Skip to main content

POST/package/bulk_delete_packages

Important! This method is only available for Greater-China based sellers with an active eDIS account.


This method can be used to delete multiple packages.

The package ID values for the packages to be deleted must be input in the packageIds array of the request.

Note: Packages can only be deleted once they have been cancelled through the cancelPackage or bulkCancelPackages methods and no longer have a tracking number associated with them.

Input

Resource URI

POST https://api.ebay.com/sell/edelivery_international_shipping/v1/package/bulk_delete_packages

This method is supported in Sandbox environment. To access the endpoint, just replace the api.ebay.com root URI with api.sandbox.ebay.com

URI parameters

This method has no URI parameters.

HTTP request headers

All requests made to eBay REST operations require you to provide the Authorization HTTP header for authentication authorization.

OAuth scope

This request requires an access token created with the authorization code grant flow, using one or more scopes from the following list (please check your Application Keys page for a list of OAuth scopes available to your application):

https://api.ebay.com/oauth/scope/sell.edelivery

See OAuth access tokens for more information.

Request payload

Copy complete valid JSON to clipboard

Request fields

Input container/fieldTypeDescription
requestsDeletePackagesRequestData

This container is used to specify the package ID values for the packages being deleted.

Occurrence: Required

requests.packageIdsarray of string

This comma-delimited array lists the unique identifiers of the packages being deleted. These values must be for packages that have been cancelled and do not have tracking numbers associated with them.

Package ID values are returned when creating a package through the createPackage method.

Occurrence: Required

Output

HTTP response headers

This call has no response headers.

Response payload

Response fields

Output container/fieldTypeDescription
responsesarray of DeletePackagesResponsesData

This array returns the result code and message for each deleted package. Each package is denoted by its package ID value.

Occurrence: Always

responses.messagestring

This string returns any additional information about the deletion of the package.

Occurrence: Always

responses.packageIdstring

The unique identifier of the deleted package.

Occurrence: Always

responses.resultCodestring

The result code detailing the result of the deletion process.

For example, a result code of 200 indicates that the call was a success and the package was deleted.

Occurrence: Always

HTTP status codes

This call can return one of the following HTTP status codes. For an overview of the status codes, see HTTP status codes in Using eBay RESTful APIs.

StatusMeaning
200OK
401Unauthorized
404Not found
500Internal Server Error

Error codes

For more on errors, plus the codes of other common errors, see Handling errors.

CodeDomainCategoryMeaning
355000API_EDISAPPLICATIONThere was a problem with an eBay internal system or process. Contact eBay developer support for assistance.
355004API_EDISREQUESTThe specified packageId {packageId} is not recognized. Please check and try again.
355064API_EDISREQUESTThe package cannot be deleted due to its current status. Please check the status and try again.
355400API_EDISREQUESTThe access token provided in the Authorization header is not for an eBay user account that is currently allowed to call this API. Please go to account settings to add to your account list.

Warnings

This call has no warnings.

Samples

New to making API calls? Please see Making a Call.

Note: Identifiers, such as order IDs or user IDs, and personal data in these samples might be anonymized or may no longer be active on eBay. If necessary, substitute current, relevant eBay data in your requests.

Sample 1: Delete multiple packages

This method can be used to delete multiple cancelled packages using one call.

Input

To use this method, the IDs of the packages you wish to delete must be input in the packageIds array and be delimited by a comma. Note that these package ID values must be for packages that have been cancelled and no longer have a tracking number.

POSThttps://api.ebay.com/sell/edelivery_international_shipping/v1/package/bulk_delete_packages

Output

If the call is successful, HTTPS result code 200 OK will be returned, and the result code, message, and identifier of each package that has been deleted will be returned in the responses array.