Skip to content

Latest commit

 

History

History
79 lines (50 loc) · 3.99 KB

delete-a-flight.md

File metadata and controls

79 lines (50 loc) · 3.99 KB
ms.assetiddescriptiontitlems.datems.topickeywordsms.localizationpriority
AD80F9B3-CED0-40BD-A199-AB81CDAE466C
Use this method in the Microsoft Store submission API to delete a package flight for an app that is registered to your Partner Center account.
Delete a package flight
04/17/2018
article
windows 10, uwp, Microsoft Store submission API, delete flight
medium

Delete a package flight

Use this method in the Microsoft Store submission API to delete a package flight for an app that is registered to your Partner Center account.

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/applications/{applicationId}/flights/{flightId}

Request header

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

Request parameters

NameTypeDescription
applicationIdstringRequired. The Store ID of the app that contains the package flight you want to delete. The Store ID for the app is available in Partner Center.
flightIdstringRequired. The ID of the package flight to delete. This ID is available in the response data for requests to create a package flight and get package flights for an app. For a flight that was created in Partner Center, this ID is also available in the URL for the flight page in Partner Center.

Request body

Do not provide a request body for this method.

Request example

The following example demonstrates how to delete a package flight.

DELETE https://manage.devcenter.microsoft.com/v1.0/my/applications/9NBLGGH4R315/flights/43e448df-97c9-4a43-a0bc-2a445e736bcd 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 package flight could not be found.
409The specified package flight was found but it could not be deleted in its current state, or the app uses a Partner Center feature that is currently not supported by the Microsoft Store submission API.

Related topics

close