Zoho Emails Sharing Details API

The Emails Sharing Details API from Zoho — 1 operation(s) for emails sharing details.

Operations 1

GET /{moduleApiName}/{id}/__emails_sharing_details Get Email Shared Details #

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-emails-sharing-details-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 email required.

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

OpenAPI Specification

zoho-emails-sharing-details-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Helpcenter Emails Sharing Details API
  version: 1.0.0
tags:
- name: Emails Sharing Details
paths:
  /{moduleApiName}/{id}/__emails_sharing_details:
    get:
      operationId: getEmailSharingDetail
      summary: Get Email Shared Details
      description: To get the details of the users and the type with whom you can share the record's emails.
      parameters:
      - name: moduleApiName
        in: path
        required: true
        description: Module  Api Name of the record
        schema:
          type: string
          enum:
          - Leads
          - Contacts
          - Accounts
          - Deals
          - CustomModule1
      - name: id
        in: path
        required: true
        description: ID of the record whose email sharing details are to be fetched
        schema:
          type: string
          maxLength: 100
          description: Record ID
      security:
      - iam-oauth2-schema:
        - ZohoCRM.modules.ALL
        - ZohoCRM.modules.emails.READ
      responses:
        '200':
          description: Success response with list of available email filters and users with whom the email can be shared.
          content:
            application/json:
              schema:
                type: object
                description: Response Object for Get Email Shared Details
                additionalProperties: false
                properties:
                  __emails_sharing_details:
                    type: array
                    description: List of email sharing details
                    maxItems: 1
                    items:
                      type: object
                      description: Details of email sharing options
                      additionalProperties: false
                      properties:
                        shared_from_users:
                          type: array
                          description: List of users with whom the email can be shared
                          maxItems: 50
                          items:
                            type: object
                            description: Details of the user with whom the email can be shared
                            additionalProperties: false
                            properties:
                              name:
                                type: string
                                description: Name of the user
                                maxLength: 250
                              _type:
                                type: string
                                description: Type of email account
                                enum:
                                - imap
                                - pop
                                - api
                              id:
                                type: string
                                description: User ID of the user
                                maxLength: 100
                            required:
                            - name
                            - _type
                            - id
                        available_types:
                          type: array
                          description: List of available email filter options
                          maxItems: 5
                          minItems: 1
                          items:
                            type: string
                            description: Type of email filter options available
                            enum:
                            - emails_sent_from_crm
                            - all_contacts_emails
                            - all_imap_shared_users
                            - all_pop_shared_users
                            - all_emails
                      required:
                      - shared_from_users
                      - available_types
        '400':
          description: Bad Request - Invalid module or malformed request
          content:
            application/json:
              schema:
                type: object
                description: Error response object
                additionalProperties: false
                properties:
                  code:
                    type: string
                    description: Error code indicating the type of error
                    enum:
                    - INVALID_DATA
                    - INVALID_MODULE
                  message:
                    type: string
                    enum:
                    - The given data is invalid.
                    - The module API name is invalid.
                    description: Error message corresponding to the error code
                  details:
                    type: object
                    description: Additional details about the error
                    additionalProperties: false
                    properties:
                      resource_path_index:
                        type: integer
                        description: Index of the resource path where the error occurred
                        format: int32
                  status:
                    type: string
                    description: Status of the response
                    enum:
                    - error
                required:
                - code
                - message
                - details
                - status
      tags:
      - Emails Sharing Details
components:
  securitySchemes:
    iam-oauth2-schema:
      $ref: ./Common.json#/components/securitySchemes/iam-oauth2-schema
x-entity: Helpcenter