zoho-crm

Manage Zoho CRM — leads, contacts, deals, and accounts via the REST API.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "zoho-crm" with this command: npx skills add thinkfleetai/thinkfleet-engine/thinkfleetai-thinkfleet-engine-zoho-crm

Zoho CRM

Manage leads, contacts, deals, and accounts.

Environment Variables

  • ZOHO_ACCESS_TOKEN - OAuth access token
  • ZOHO_API_DOMAIN - API domain (e.g. https://www.zohoapis.com)

List leads

curl -s -H "Authorization: Zoho-oauthtoken $ZOHO_ACCESS_TOKEN" \
  "$ZOHO_API_DOMAIN/crm/v5/Leads?per_page=10" | jq '.data[] | {id, Full_Name, Email, Company, Lead_Status}'

List deals

curl -s -H "Authorization: Zoho-oauthtoken $ZOHO_ACCESS_TOKEN" \
  "$ZOHO_API_DOMAIN/crm/v5/Deals?per_page=10" | jq '.data[] | {id, Deal_Name, Amount, Stage}'

Create lead

curl -s -X POST -H "Authorization: Zoho-oauthtoken $ZOHO_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  "$ZOHO_API_DOMAIN/crm/v5/Leads" \
  -d '{"data":[{"Last_Name":"Doe","First_Name":"John","Email":"john@example.com","Company":"Acme"}]}' | jq '.data[]'

Notes

  • Always confirm before creating or updating records.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

local-whisper

No summary provided by upstream source.

Repository SourceNeeds Review
General

kagi-search

No summary provided by upstream source.

Repository SourceNeeds Review
General

bambu-local

No summary provided by upstream source.

Repository SourceNeeds Review