curl --request PATCH \
--url https://ageneral.ai/v1/nodes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"node": {
"id": "<string>",
"userId": "<string>",
"projectId": "<string>",
"status": "<string>",
"name": "<string>",
"identifier": "<string>",
"publicIp": "<string>",
"directSecrets": true,
"connectors": [
"<string>"
],
"openclawConfig": {},
"createdAt": "<string>",
"operatingSystem": "<string>"
},
"updateMask": "<string>",
"providerKeys": {}
}
'