Zoho Sharing Rule API

The SharingRule API from Zoho — 1 operation(s) for sharingrule.

Operations 2

GET /api/v1/dataSharingRules Get data sharing rules #
PATCH /api/v1/dataSharingRules Update data sharing rules #

Documentation

Specifications

Code Examples

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/zoho-sharingrule-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zoho-sharingrule-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Helpcenter Sharing Rule API
  version: 1.0.0
tags:
- name: SharingRule
paths:
  /api/v1/dataSharingRules:
    get:
      tags:
      - SharingRule
      summary: Get data sharing rules
      description: This API fetches the different data sharing rules configured in your help desk portal.
      operationId: getDataSharingRules
      parameters:
      - $ref: ./Common.json#/components/parameters/orgId
      responses:
        '200':
          $ref: '#/components/responses/sharingRuleResponse'
      security:
      - iam-oauth2-schema:
        - Desk.settings.READ
      x-audience:
      - external-public
    patch:
      tags:
      - SharingRule
      summary: Update data sharing rules
      description: This API updates the data sharing rules configured in your help desk portal.
      operationId: updateDataSharingRules
      parameters:
      - $ref: ./Common.json#/components/parameters/orgId
      requestBody:
        $ref: '#/components/requestBodies/sharingRuleRequest'
      responses:
        '204':
          $ref: ./Common.json#/components/responses/emptyResponse
      security:
      - iam-oauth2-schema:
        - Desk.settings.UPDATE
      x-audience:
      - external-public
components:
  responses:
    sharingRuleResponse:
      description: sharingRuleResponse template definitions
      content:
        application/json:
          schema:
            type:
            - 'null'
            - object
            additionalProperties: false
            properties:
              tickets:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              calls:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              accounts:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              contracts:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              contacts:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              tasks:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              events:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              products:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
            required:
            - accounts
            - calls
            - contacts
            - contracts
            - events
            - products
            - tasks
            - tickets
          examples:
            Valid responses Definitions:
              value:
                tickets: public
                calls: public read only
                accounts: public read only
                contracts: private
                contacts: public
                tasks: private
                events: public
                products: public
  requestBodies:
    sharingRuleRequest:
      content:
        application/json:
          schema:
            type:
            - 'null'
            - object
            additionalProperties: false
            properties:
              tickets:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              calls:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              accounts:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              contracts:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              contacts:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              tasks:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              events:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
              products:
                type:
                - string
                - 'null'
                enum:
                - public
                - private
                - public read only
                maxLength: 100
                minLength: 0
          examples:
            Valid requestBody Definitions:
              value:
                tickets: public
                calls: public read only
                accounts: public read only
                contracts: private
                contacts: public
                tasks: private
                events: public
                products: public
  securitySchemes:
    iam-oauth2-schema:
      $ref: ./Common.json#/components/securitySchemes/iam-oauth2-schema
x-entity: Helpcenter