Skip to content

Latest commit

 

History

History
81 lines (53 loc) · 3.98 KB

delete-an-add-on-submission.md

File metadata and controls

81 lines (53 loc) · 3.98 KB
ms.assetiddescriptiontitlems.datems.topickeywordsms.localizationpriority
D677E126-C3D6-46B6-87A5-6237EBEDF1A9
Use this method in the Microsoft Store submission API to delete an existing add-on submission.
Delete an add-on submission
04/17/2018
article
windows 10, uwp, Microsoft Store submission API, add-on submission, delete, in-app product, IAP
medium

Delete an add-on submission

Use this method in the Microsoft Store submission API to delete an existing add-on (also known as in-app product or IAP) submission.

Prerequisites

To use this method, you need to first do the following:

  • If you have not done so already, complete all the prerequisites for the Microsoft Store submission API.
  • Obtain an Azure AD access token to use in the request header for this method. After you obtain an access token, you have 60 minutes to use it before it expires. After the token expires, you can obtain a new one.

Request

This method has the following syntax. See the following sections for usage examples and descriptions of the header and request body.

MethodRequest URI
DELETEhttps://manage.devcenter.microsoft.com/v1.0/my/inappproducts/{inAppProductId}/submissions/{submissionId}

Request header

HeaderTypeDescription
AuthorizationstringRequired. The Azure AD access token in the form Bearer <token>.

Request parameters

NameTypeDescription
inAppProductIdstringRequired. The Store ID of the add-on that contains the submission to delete. The Store ID is available in Partner Center.
submissionIdstringRequired. The ID of the submission to delete. This ID is available in the response data for requests to create an add-on submission. For a submission that was created in Partner Center, this ID is also available in the URL for the submission page in Partner Center.

Request body

Do not provide a request body for this method.

Request example

The following example demonstrates how to delete an add-on submission.

DELETE https://manage.devcenter.microsoft.com/v1.0/my/inappproducts/9NBLGGH4TNMP/submissions/1152921504621230023 HTTP/1.1Authorization: Bearer <your access token>

Response

If successful, this method returns an empty response body.

Error codes

If the request cannot be successfully completed, the response will contain one of the following HTTP error codes.

Error codeDescription
400The request parameters are invalid.
404The specified submission could not be found.
409The specified submission was found but it could not be deleted in its current state, or the add-on uses a Partner Center feature that is currently not supported by the Microsoft Store submission API.

Related topics

close