n8n-nodes-phonely
v0.1.2
Published
n8n community node for Phonely (API-key auth for agents/orgs).
Maintainers
Readme
n8n-nodes-phonely
Community-style n8n node for Phonely using API-key auth (X-Authorization) and the same request shape the Phonely SDK (@phonely-ai/web) expects. This package now covers the published Phonely REST endpoints (agents, orgs, calls, voices, knowledge base, billing, chat build, number import).
Credentials
- API Key: Phonely API key (sent as
X-Authorization). - UID: Optional UID that some endpoints expect; if provided, it is included in the POST body.
- Base URL: Defaults to
https://app.phonely.ai/api.
Operations
- Agents: list, get, duplicate, update (get-all-agents is not exposed separately; use list/get).
- Orgs: list, get.
- Calls: list, get, report error.
- Usage: get.
- Voices: list.
- Phone numbers: import.
- Knowledge base (documents): list, add, delete.
- Knowledge base (websites): list, add, delete.
- Billing: invoices (list), subscription (get).
- Chat build: create (non-streaming request).
Requests send JSON and include User-Agent: n8n-nodes-phonely. Errors surface HTTP status and body message when available.
Notes
- Some endpoints (e.g., chat build) stream in the native API; here they return the HTTP response without streaming.
- The SDK (
@phonely-ai/web) can be added as a dependency if you want to swap the HTTP helper for SDK calls; a stub declaration is provided for typing.
