Projects
Create Project
No Code Platforms
- Webflow
- Bubble
- Hubspot
- Drupal
- Wordpress
- Wix
- Squarespace
- Shopify
- Framer
- Google Tag Manager
- Typedream
Web Frameworks
- React.js
- Next.js
- Vue.js
- Angular.js
- Svelte.js
Integration Guides
Dashboard Guides
- How to access project settings
- How to invite users to your project
- How to view all comments on a project
- How to upload custom branding
- Navigating the support section
- How create a new project
- How to invite admin users
- How to invite commenters
- How to remove admin users
- How to remove commenters
- How to use the kanban board
Managing Files
Product Features
Billing
REST APIs
- Projects
Projects
Create Project
POST
curl --request POST \
--url https://createproject.api.usesuperflow.com/ \
--header 'Content-Type: application/json' \
--header 'x-superflow-api-key: <x-superflow-api-key>' \
--header 'x-superflow-auth-token: <x-superflow-auth-token>' \
--data '{
"data": {
"projectUrl": "<string>",
"projectName": "<string>"
}
}'
{
"result": {
"status": "success",
"message": "Created new project successfully.",
"data": {
"projectId": "7649736893876327"
}
}
}
Use this API to create a project on Superflow.
Endpoint
POST https://createproject.api.velt.dev/
Headers
Your API key.
Your Auth Token.
Body Example
Params
Example Requests
{
"data":{
"projectUrl": "https://yourprojecturl.com",
"projectName": "Your Project Name"
}
}
Response
Success Response
{
"result": {
"status": "success",
"message": "Created new project successfully.",
"data": {
"projectId": "7649736893876327"
}
}
}
Failure Response
{
"error": {
"message": "ERROR_MESSAGE",
"status": "INVALID_ARGUMENT"
}
}
{
"result": {
"status": "success",
"message": "Created new project successfully.",
"data": {
"projectId": "7649736893876327"
}
}
}
Was this page helpful?
curl --request POST \
--url https://createproject.api.usesuperflow.com/ \
--header 'Content-Type: application/json' \
--header 'x-superflow-api-key: <x-superflow-api-key>' \
--header 'x-superflow-auth-token: <x-superflow-auth-token>' \
--data '{
"data": {
"projectUrl": "<string>",
"projectName": "<string>"
}
}'
{
"result": {
"status": "success",
"message": "Created new project successfully.",
"data": {
"projectId": "7649736893876327"
}
}
}