Create Project API
The Create Project API enables users to create a new project using the provided configuration. This API requires the following parameters:
Project name
Deployment platform
Deployment type
By utilizing this API, users can efficiently initiate the creation of projects with specific configurations to suit their deployment needs.
Gets information about the authenticated user.
Header parameters
tokenstringOptionalExample:
Hosting-Auth Token-Create
Your Auth Token
Body
deployTypestringOptionalExample:
One of CLI,CID,GITHUB,IPNS
CLI
namestringOptionalExample:
Project name
Your project Name
platformstringOptionalExample:
One of IPFS,AR,IC,GREENFIELD
IPFS
Responses
200
Successful Creation
application/json
post
POST /project HTTP/1.1
Host: hosting.api.4everland.org
Content-Type: multipart/form-data
Accept: */*
Content-Length: 65
{
"deployType": "CLI",
"name": "Your project Name",
"platform": "IPFS"
}
200
Successful Creation
{
"bcode": 10,
"code": 200,
"content": {
"projectId": "668e1b663fc4740007cfaa05"
},
"message": ""
}
Last updated