Zoho Bigin integration
Zoho Bigin is a simplified CRM solution from Zoho tailored for small…
- Provider
- zoho_bigin
- Category
- Crm
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 54 available
Quick start
Call Zoho Bigin from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Zoho Bigin's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"ZOHO_BIGIN_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
OverSkill hosts the OAuth application for Zoho Bigin. End-users click Connect on the integration card in your app, complete the OAuth flow with Zoho Bigin, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2.
Available actions
54 actions exposed via the
Zoho Bigin integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
ZOHO_BIGIN_ADD_RECORDS -
ZOHO_BIGIN_ADD_TAGS_TO_RECORDS -
ZOHO_BIGIN_CREATE_BULK_READ_JOB -
ZOHO_BIGIN_CREATE_NOTES -
ZOHO_BIGIN_CREATE_RECORD_NOTES -
ZOHO_BIGIN_CREATE_TAGS -
ZOHO_BIGIN_DELETE_ATTACHMENT -
ZOHO_BIGIN_DELETE_NOTE -
ZOHO_BIGIN_DELETE_NOTES -
ZOHO_BIGIN_DELETE_RECORD -
ZOHO_BIGIN_DELETE_RECORD_PHOTO -
ZOHO_BIGIN_DELETE_RECORDS
Show all 54 actions
-
ZOHO_BIGIN_DELINK_RELATED_RECORDS -
ZOHO_BIGIN_DISABLE_NOTIFICATIONS -
ZOHO_BIGIN_DOWNLOAD_ATTACHMENT -
ZOHO_BIGIN_DOWNLOAD_BULK_READ_RESULT -
ZOHO_BIGIN_DOWNLOAD_RECORD_PHOTO -
ZOHO_BIGIN_ENABLE_NOTIFICATIONS -
ZOHO_BIGIN_GET_ALL_NOTES -
ZOHO_BIGIN_GET_ATTACHMENTS -
ZOHO_BIGIN_GET_BULK_READ_JOB_STATUS -
ZOHO_BIGIN_GET_CUSTOM_VIEW -
ZOHO_BIGIN_GET_CUSTOM_VIEWS -
ZOHO_BIGIN_GET_DELETED_RECORDS -
ZOHO_BIGIN_GET_FIELDS -
ZOHO_BIGIN_GET_LAYOUT -
ZOHO_BIGIN_GET_LAYOUTS -
ZOHO_BIGIN_GET_MODULE_METADATA -
ZOHO_BIGIN_GET_MODULES -
ZOHO_BIGIN_GET_NOTIFICATION_DETAILS -
ZOHO_BIGIN_GET_ORGANIZATION -
ZOHO_BIGIN_GET_PROFILES -
ZOHO_BIGIN_GET_RECORD -
ZOHO_BIGIN_GET_RECORD_NOTES -
ZOHO_BIGIN_GET_RECORDS -
ZOHO_BIGIN_GET_RECORDS_COUNT -
ZOHO_BIGIN_GET_RELATED_LISTS_METADATA -
ZOHO_BIGIN_GET_RELATED_RECORDS -
ZOHO_BIGIN_GET_ROLES -
ZOHO_BIGIN_GET_TEAM_PIPELINE_RECORDS -
ZOHO_BIGIN_GET_USER -
ZOHO_BIGIN_GET_USERS -
ZOHO_BIGIN_SEARCH_RECORDS -
ZOHO_BIGIN_UPDATE_NOTE -
ZOHO_BIGIN_UPDATE_NOTIFICATION_DETAILS -
ZOHO_BIGIN_UPDATE_NOTIFICATION_INFO -
ZOHO_BIGIN_UPDATE_RECORDS -
ZOHO_BIGIN_UPDATE_RELATED_RECORDS -
ZOHO_BIGIN_UPDATE_USER -
ZOHO_BIGIN_UPDATE_USERS -
ZOHO_BIGIN_UPLOAD_ATTACHMENT -
ZOHO_BIGIN_UPLOAD_ORGANIZATION_PHOTO -
ZOHO_BIGIN_UPLOAD_RECORD_PHOTO -
ZOHO_BIGIN_UPSERT_RECORDS
Build with Zoho Bigin
Open OverSkill, describe what you want to build, and reference Zoho Bigin in your prompt — the AI will wire up the integration automatically.