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

Start for resources of an environment that belongs to a project.

Start for resources.

Start for resources of an environment that belongs to a project.

Path Parameters
    project string required
    environment string required
Request Body required
    changeComment string required
    items object[] required
  • Array [
  • id string
    name string
  • ]
  • preview boolean

    Default value: false

Responses

OK


Schema
    message string
    status integer

    Default value: 200

    statusText string

    Default value: OK

POST /v1/projects/:project/environments/:environment/resources/_/start

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
project — path required
environment — path required
Body required
{
"changeComment": "string",
"items": [
{
"id": "string",
"name": "string"
}
],
"preview": false
}
curl / cURL
curl -L -X POST 'https://seal-io.github.io/v1/projects/:project/environments/:environment/resources/_/start' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"changeComment": "string",
"items": [
{
"id": "string",
"name": "string"
}
],
"preview": false
}'