curl --request PATCH \
--url https://flowra.dev/api/v1/toolkits/byId/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "Updated Toolkit Name",
"description": "Updated description",
"logo": "https://example.com/new-logo.png",
"appUrl": "https://new-app.example.com",
"authSchemes": [
"OAUTH2",
"API_KEY"
],
"providerManagedAuthSchemes": [
"OAUTH2"
],
"noAuth": false,
"isDisabled": false,
"version": "1.1.0",
"categories": [
{}
],
"baseUrl": "https://api.example.com",
"authConfigDetails": "<array>"
}
'