CLICRM
CRM
20 `hanzo` commands for CRM, each calling one operation on api.hanzo.ai.
Package crm is your sales pipeline: the companies, the people, the deals in play.
20 commands · API reference →
| Command | Calls | What it does |
|---|---|---|
hanzo crm applications get <id> | GET /v1/crm/applications/{id} | Returns one Startup Program application with its AI screen and stage history. |
hanzo crm applications update <id> | PATCH /v1/crm/applications/{id} | Moves one Startup Program application through the pipeline. |
hanzo crm applications list | GET /v1/crm/applications | Returns the org's Startup Program applications, newest first. |
hanzo crm applications create | POST /v1/crm/applications | Apply to the Startup Program from the public form |
hanzo crm companies get <id> | GET /v1/crm/companies/{id} | Returns one of the caller org's companies. |
hanzo crm companies set <id> | PUT /v1/crm/companies/{id} | Replaces one of the caller org's companies. |
hanzo crm companies rm <id> | DELETE /v1/crm/companies/{id} | Removes one of the caller org's companies and answers 204. |
hanzo crm companies list | GET /v1/crm/companies | Returns the caller org's companies, most recently updated first. |
hanzo crm companies create | POST /v1/crm/companies | Adds a company to the caller's org and answers 201 with the stored record. |
hanzo crm contacts get <id> | GET /v1/crm/contacts/{id} | Returns one of the caller org's contacts. |
hanzo crm contacts set <id> | PUT /v1/crm/contacts/{id} | Replaces one of the caller org's contacts. |
hanzo crm contacts rm <id> | DELETE /v1/crm/contacts/{id} | Removes one of the caller org's contacts and answers 204. |
hanzo crm contacts list | GET /v1/crm/contacts | Returns the caller org's contacts, most recently updated first. |
hanzo crm contacts create | POST /v1/crm/contacts | Adds a person to the caller's org and answers 201 with the stored record. |
hanzo crm opportunities get <id> | GET /v1/crm/opportunities/{id} | Returns one of the caller org's deals. |
hanzo crm opportunities set <id> | PUT /v1/crm/opportunities/{id} | Replaces one of the caller org's deals. |
hanzo crm opportunities rm <id> | DELETE /v1/crm/opportunities/{id} | Removes one of the caller org's deals and answers 204. |
hanzo crm opportunities list | GET /v1/crm/opportunities | Returns the caller org's deals, most recently updated first. |
hanzo crm opportunities create | POST /v1/crm/opportunities | Adds a deal to the caller's org and answers 201 with the stored record. |
hanzo crm summary | GET /v1/crm/summary | Summary counts the caller org's CRM records: companies, contacts, opportunities. |
How is this guide?