跳到主要内容
版本:v0.6

Create a project.

Create a project.

Create a project.

Request Body required
    description string
    labels object
    property name* string
    name string required
Responses

Created


Schema
    createTime date-time
    description string
    id string
    labels object
    property name* string
    name string
    updateTime date-time
POST /v1/projects

Authorization

name: BasicAuthtype: httpdescription: Basic Authentication, in form of base64(<username>:<password>), the password must be a valid Seal API token.in: headerscheme: basic

Request

Security Scheme
Username
Password
Body required
{
"description": "string",
"labels": {},
"name": "string"
}
curl / cURL
curl -L -X POST 'https://seal-io.github.io/v1/projects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"description": "string",
"labels": {},
"name": "string"
}'