Environments
Update an environments in an organisation.
Request Body
application/json
Requiredname?string
Length
3 <= length <= 25
purpose?string
Length
length <= 255
type?string
Value in
"production" | "staging" | "development" | "demo" | "other"
description?string
Length
length <= 500
Path Parameters
organisationSlugstring
Pattern
"^[a-z0-9-]+$"
environmentSlugstring
Pattern
"^[a-z0-9-]+$"
Response Body
Request was successfully processed. The response body contains the requested data.
TypeScript Definitions
Use the response body type in TypeScript.
id?integer
Format
"int64"
identity?string
Format
"uuid"
name?string
purpose?string
type?string
description?string
createdAt?string
Format
"date-time"
modifiedAt?string
Format
"date-time"
deletedAt?string
Format
"date-time"
totalClusters?integer
Format
"int64"
totalCpu?integer
Format
"int64"
totalMemory?integer
Format
"int64"
slug?object
organisationSlug?object
Invalid request parameters. Please review the documentation for valid parameter values.
TypeScript Definitions
Use the response body type in TypeScript.
response?unknown
You do not have the necessary permissions to access this resource.
TypeScript Definitions
Use the response body type in TypeScript.
response?unknown
The requested resource could not be found. Please check the resource URL or identifier.
TypeScript Definitions
Use the response body type in TypeScript.
response?unknown
An internal error occurred on the server.
TypeScript Definitions
Use the response body type in TypeScript.
response?unknown
curl -X PATCH "https://api.avisi.cloud/api/v1/orgs/string/environments/string" \
-H "Content-Type: application/json" \
-d '{}'
const body = JSON.stringify({})
fetch("https://api.avisi.cloud/api/v1/orgs/string/environments/string", {
body
})
package main
import (
"fmt"
"net/http"
"io/ioutil"
"strings"
)
func main() {
url := "https://api.avisi.cloud/api/v1/orgs/string/environments/string"
body := strings.NewReader(`{}`)
req, _ := http.NewRequest("PATCH", url, body)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import requests
url = "https://api.avisi.cloud/api/v1/orgs/string/environments/string"
body = {}
response = requests.request("PATCH", url, json = body, headers = {
"Content-Type": "application/json"
})
print(response.text)
{
"id": 0,
"identity": "10a80a7a-1a32-4a74-b592-aa2a4ef691c5",
"name": "string",
"purpose": "string",
"type": "string",
"description": "string",
"createdAt": "2019-08-24T14:15:22Z",
"modifiedAt": "2019-08-24T14:15:22Z",
"deletedAt": "2019-08-24T14:15:22Z",
"totalClusters": 0,
"totalCpu": 0,
"totalMemory": 0,
"slug": {
"slugValue": "string"
},
"organisationSlug": {
"slugValue": "string"
}
}
{
"message": "string",
"details": [
"string"
]
}
{
"message": "string",
"details": [
"string"
]
}
{
"message": "string",
"details": [
"string"
]
}
{
"message": "string",
"details": [
"string"
]
}