Create credential
documentedCreate a new credential (type, data, and access). ([docs.n8n.io](https://docs.n8n.io/embed/managing-workflows/?utm_source=openai))
POST /credentialsCredentialsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$n8n_host}}/api/v1/credentials" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-N8N-API-KEY: {{N8N_API_KEY}}" \
-d '{"name": "{{$credential_name}}", "type": "{{$credential_type}}", "data": {{$credential_data}} }'