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.

Create Project

post

Gets information about the authenticated user.

Header parameters
tokenstringOptional

Hosting-Auth Token-Create

Example: Your Auth Token
Body
deployTypestringOptional

One of CLI,CID,GITHUB,IPNS

Example: CLI
namestringOptional

Project name

Example: Your project Name
platformstringOptional

One of IPFS,AR,IC,GREENFIELD

Example: 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": ""
}

If you have any questions, please join our Discord server, or send us an email at [email protected].

Last updated