Skip to main content
GET
/
system
/
config
Get system configuration
curl --request GET \
  --url http://localhost:5173/api/flowdrop/system/config \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "version": "1.0.0",
    "features": {},
    "limits": {
      "maxWorkflowNodes": 123,
      "maxConcurrentExecutions": 123
    }
  },
  "message": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Response

System configuration retrieved successfully

success
boolean

Whether the request was successful

data
object

Response data (type varies by endpoint)

message
string

Response message

error
string

Error message (if any)