/createProject

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

Create a project from scratch!

Returns a Winter specific projectId that you can then use for the front end integration

Create a project on Winter.

POST /createProject

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

{
  "success": true,
  "project_id": 6736
}

Last updated