Configuration
Set a credential provider config
Set (create or update) a credential provider config at runtime.
The payload is validated by provider name (e.g. pipedream). Secret fields are encrypted at rest. A successful write rebuilds the in-process provider registry so the change takes effect without a restart. The response redacts secret fields.
put/admin/config/providers/{name}
Path parameters
namestring required
Request body
Example request
{
"client_id": "client_abc123",
"client_secret": "<redacted>",
"environment": "production",
"project_id": "proj_abc123"
}Response
Successful Response
Example response
{
"config": {
"client_id": "client_abc123",
"client_secret": "***",
"environment": "production",
"kind": "pipedream",
"project_id": "proj_abc123"
},
"created_at": "2026-06-29T12:00:00Z",
"name": "pipedream",
"updated_at": "2026-06-29T12:00:00Z"
}