Endpoint
POST https://api.ugc.inc/org/integration-key/delete
Overview
Delete an integration key for a specific AI provider. After deletion, automation nodes will fall back to platform-provided keys for that provider.
Request Body
The provider to delete the key for. One of: fal, openrouter
Response
The provider whose key was deleted
curl -X POST https://api.ugc.inc/org/integration-key/delete \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "openrouter"
}'
{
"ok": true,
"code": 200,
"message": "Success",
"data": {
"provider": "openrouter"
}
}