Winter - Sell NFTs via credit card
  • Get started
    • Get Started
      • Project Testing
      • Push to Production
    • Marketplaces
    • How do I get paid?
    • Payment methods & locations
      • Foreign Currencies
      • Apple Pay
    • Whitelists/Allowlists
  • Marketplace integrations
    • Intro
    • Implementation strategy
      • Directly with smart contracts
      • Aggregation APIs
      • APIs to build a transaction
      • Build and submit a transaction
  • Primary Mint Smart Contracts
    • 🚨Requirements
    • ETH, Polygon, and EVM
      • Multi-contract
      • Drop types we support
    • Solana
    • Crypto pricing
  • Front End Integration
    • Customization
    • Pre-fill (email, wallet, etc)
    • React
    • React (Marketplace)
    • Plain HTML
    • Post-purchase
    • CSS customization
  • Platform API
    • Intro (read this first!)
    • testmode -> livemode
    • /createProject
    • /updateProject
    • /deleteProject
    • /updateWhitelist
    • /getProjects
  • Wallet API Docs
    • Intro
    • /getNFTs
    • /transferNFT
  • NFT Claim API
    • Intro
    • /mintNFT
    • /mintFreeNFT
    • /transferNFT
  • Cross-chain payments
    • Intro
    • Integration
Powered by GitBook
On this page
  1. Platform API

/deleteProject

Base URL: https://winter-api.usewinter.com

Previous/updateProjectNext/updateWhitelist

Last updated 2 years ago

Delete a project!

Delete your project on Winter.

DELETE /deleteProject

Authenticate with basic auth where the username is your API key, e.g.

curl -X POST https://winter-api.usewinter.com/createProject -u sk_live_abcd=:

await axios.post(url,{ BODY }, { auth: { username: 'sk_live_abcd=' }})

Request Body

Name
Type
Description

email*

String

The email associated with the API key -- this is the email that can log into the later to edit the project.

sandbox*

Boolean

True if you want to delete a project in sandbox. False if you want to delete a mainnet project!

Defaults to false.

projectId*

String

The id of the project you want to delete.

{
  "success": true,
  "project_id_deleted": 6736
}
{
  success: false,
  message: 'Reason why'
}

dashboard