Skip to main content
PATCH
/
api
/
v1
/
toolkits
/
byId
/
{id}
Update an existing toolkit
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>"
}
'
{
  "success": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Path Parameters

id
string
required

Body

application/json

Response

200 - application/json

Toolkit updated successfully