/deleteProject
Base URL: https://winter-api.usewinter.com
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 dashboard 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. |
Last updated