JavaScript
import { createSpreeClient } from '@spree/sdk' const client = createSpreeClient({ baseUrl: 'https://your-store.com', publishableKey: '<api-key>', }) await client.store.wishlists.delete('wl_abc123', { bearerToken: '<token>', })
Publishable API key for store access
JWT token for authenticated customers
wishlist deleted
Was this page helpful?