Skip to main content
PATCH
/
workspace
Update workspace
curl --request PATCH \
  --url https://api.envless.cloud/workspace \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "slug": "<string>"
}
'
{
  "success": true,
  "code": 200,
  "message": "Workspace updated.",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "icon": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Personal access key from https://app.envless.cloud/keys. Pass as Authorization: Bearer ev_live_....

Body

application/json
name
string
slug
string

Response

Workspace updated

success
boolean
Example:

true

code
integer
Example:

200

message
string
Example:

"Workspace updated."

data
object