Zoho Photo API

The Photo API from Zoho — 1 operation(s) for photo.

Operations 3

GET /{module}/{record}/photo Get a photo #
POST /{module}/{record}/photo Upload a photo #
DELETE /{module}/{record}/photo Delete a photo #

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-photo-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-photo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Helpcenter Photo API
  version: 1.0.0
tags:
- name: Photo
paths:
  /{module}/{record}/photo:
    get:
      summary: Get a photo
      description: Retrieve a photo for a record
      operationId: getPhoto
      parameters:
      - $ref: '#/components/parameters/Module'
      - $ref: '#/components/parameters/Record'
      responses:
        '200':
          description: Successfully retrieved the photo
          content:
            image/png:
              schema:
                type: string
                format: binary
                description: Binary image data representing the record photo
        '204':
          description: No photo found for the record
        '400':
          description: Bad request - Invalid URL pattern, data, or module
          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_URL_PATTERN
                    - INVALID_DATA
                    - INVALID_MODULE
                  message:
                    type: string
                    description: Error message describing the error
                    maxLength: 1000
                  status:
                    type: string
                    description: Status of the response
                    enum:
                    - error
                  details:
                    oneOf:
                    - type: object
                      description: Empty details object
                      additionalProperties: false
                    - type: object
                      description: Details object containing invalid ID
                      additionalProperties: false
                      properties:
                        id:
                          type: string
                          description: The invalid ID
                          maxLength: 100
                      required:
                      - id
                    - type: object
                      description: Details object containing resource path index
                      additionalProperties: false
                      properties:
                        resource_path_index:
                          type: integer
                          format: int32
                          description: Index of the invalid resource path
                      required:
                      - resource_path_index
                required:
                - code
                - message
                - status
                - details
      security:
      - iam-oauth2-schema:
        - ZohoCRM.modules.READ
      tags:
      - Photo
    post:
      summary: Upload a photo
      description: Upload a photo for a record
      operationId: uploadPhoto
      parameters:
      - $ref: '#/components/parameters/Module'
      - $ref: '#/components/parameters/Record'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              description: Request body for uploading a photo file
              additionalProperties: false
              properties:
                file:
                  type: string
                  format: binary
                  description: The photo file to upload
              required:
              - file
        required: true
      responses:
        '200':
          description: Successfully uploaded the photo
          content:
            application/json:
              schema:
                type: object
                description: Success response object
                additionalProperties: false
                properties:
                  code:
                    type: string
                    description: Success code indicating the operation completed successfully
                    enum:
                    - SUCCESS
                  message:
                    type: string
                    description: Success message describing the result
                    maxLength: 1000
                  status:
                    type: string
                    description: Status of the response
                    enum:
                    - success
                  details:
                    type: object
                    description: Additional details about the operation
                    additionalProperties: false
                required:
                - code
                - message
                - status
                - details
        '400':
          description: Bad request - Invalid URL pattern, data, or module
          content:
            application/json:
              schema:
                description: Error response for photo upload operation
                oneOf:
                - type: object
                  description: Error response object
                  additionalProperties: false
                  properties:
                    code:
                      type: string
                      description: Error code indicating the type of error
                      enum:
                      - INVALID_URL_PATTERN
                      - INVALID_DATA
                      - INVALID_MODULE
                      - CANNOT_PERFORM_ACTION
                      - NOT_REVIEWED
                      - NOT_APPROVED
                      - RECORD_LOCKED
                    message:
                      type: string
                      description: Error message describing the error
                      maxLength: 1000
                    status:
                      type: string
                      description: Status of the response
                      enum:
                      - error
                    details:
                      oneOf:
                      - type: object
                        description: Empty details object
                        additionalProperties: false
                      - type: object
                        description: Details object containing invalid ID
                        additionalProperties: false
                        properties:
                          id:
                            type: string
                            description: The invalid ID
                            maxLength: 100
                        required:
                        - id
                      - type: object
                        description: Details object containing resource path index
                        additionalProperties: false
                        properties:
                          resource_path_index:
                            type: integer
                            format: int32
                            description: Index of the invalid resource path
                        required:
                        - resource_path_index
                  required:
                  - code
                  - message
                  - status
                  - details
      security:
      - iam-oauth2-schema:
        - ZohoCRM.modules.CREATE
      tags:
      - Photo
    delete:
      summary: Delete a photo
      description: Delete a photo for a record
      operationId: deletePhoto
      parameters:
      - $ref: '#/components/parameters/Module'
      - $ref: '#/components/parameters/Record'
      responses:
        '200':
          description: Successfully deleted the photo
          content:
            application/json:
              schema:
                type: object
                description: Success response object
                additionalProperties: false
                properties:
                  code:
                    type: string
                    description: Success code indicating the operation completed successfully
                    enum:
                    - SUCCESS
                  message:
                    type: string
                    description: Success message describing the result
                    maxLength: 1000
                  status:
                    type: string
                    description: Status of the response
                    enum:
                    - success
                  details:
                    type: object
                    description: Additional details about the operation
                    additionalProperties: false
                required:
                - code
                - message
                - status
                - details
        '400':
          description: Bad request - Invalid URL pattern, data, or module
          content:
            application/json:
              schema:
                description: Error response for photo delete operation
                oneOf:
                - type: object
                  description: Error response object
                  additionalProperties: false
                  properties:
                    code:
                      type: string
                      description: Error code indicating the type of error
                      enum:
                      - INVALID_URL_PATTERN
                      - INVALID_DATA
                      - INVALID_MODULE
                    message:
                      type: string
                      description: Error message describing the error
                      maxLength: 1000
                    status:
                      type: string
                      description: Status of the response
                      enum:
                      - error
                    details:
                      oneOf:
                      - type: object
                        description: Empty details object
                        additionalProperties: false
                      - type: object
                        description: Details object containing invalid ID
                        additionalProperties: false
                        properties:
                          id:
                            type: string
                            description: The invalid ID
                            maxLength: 100
                        required:
                        - id
                      - type: object
                        description: Details object containing resource path index
                        additionalProperties: false
                        properties:
                          resource_path_index:
                            type: integer
                            format: int32
                            description: Index of the invalid resource path
                        required:
                        - resource_path_index
                  required:
                  - code
                  - message
                  - status
                  - details
      security:
      - iam-oauth2-schema:
        - ZohoCRM.modules.DELETE
      tags:
      - Photo
components:
  parameters:
    Record:
      name: record
      in: path
      required: true
      description: The record ID
      schema:
        type: string
        format: int64
        maxLength: 20
    Module:
      name: module
      in: path
      required: true
      description: The API name of the module
      schema:
        type: string
        maxLength: 100
  securitySchemes:
    iam-oauth2-schema:
      $ref: ./Common.json#/components/securitySchemes/iam-oauth2-schema
x-entity: Helpcenter