For the complete documentation index, see llms.txt. This page is also available as Markdown.

Deactivate a shipping option

Performs a soft delete: sets is_active to false on the shipping option and returns 204 No Content. The record is retained in the database and continues to appear in list results (with is_active: false). Permanent removal is not available through this API.

delete
/shipping_options/{id}/
Authorizations
AuthorizationstringRequired

Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.

Path parameters
idintegerRequired

The unique identifier of the shipping option.

Responses
204

The shipping option was deactivated successfully. No response body.

No content

delete/shipping_options/{id}/
DELETE /api/remote/1/shipping_options/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*

No content

Last updated

Was this helpful?