> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho CRM: README

> Delete a photo. Zoho CRM Record Photo Delete Photo reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Delete a photo.

<Info>
  Tool ID: `zoho_crm_record_photo_delete_photo`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'zoho_crm_record_photo_delete_photo',
  {
    "module": "example",
    "record": "example"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute zoho_crm_record_photo_delete_photo --input '{
  "module": "example",
  "record": "example"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "code": "SUCCESS",
    "message": "Example message",
    "status": "success",
    "details": {}
  }
}
```

Use `deepline tools get zoho_crm_record_photo_delete_photo --json` for the latest machine-readable contract.

## Input reference

Delete a photo for a record

| Name             | Type     | Required | Default | Details                                            |
| ---------------- | -------- | -------- | ------- | -------------------------------------------------- |
| `payload.module` | `string` | Yes      | —       | The API name of the module Maximum length: 100.    |
| `payload.record` | `string` | Yes      | —       | The record ID Format: `int64`. Maximum length: 20. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Delete a photo for a record",
    "properties": {
      "module": {
        "type": "string",
        "description": "The API name of the module",
        "maxLength": 100
      },
      "record": {
        "type": "string",
        "description": "The record ID",
        "maxLength": 20,
        "format": "int64"
      }
    },
    "required": [
      "module",
      "record"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                  | Type        | Required | Default | Details                                                                          |
| --------------------- | ----------- | -------- | ------- | -------------------------------------------------------------------------------- |
| `result.data`         | `object`    | Yes      | —       | Success response object                                                          |
| `result.data.code`    | `"SUCCESS"` | Yes      | —       | Success code indicating the operation completed successfully Allowed: `SUCCESS`. |
| `result.data.message` | `string`    | Yes      | —       | Success message describing the result Maximum length: 1000.                      |
| `result.data.status`  | `"success"` | Yes      | —       | Status of the response Allowed: `success`.                                       |
| `result.data.details` | `record`    | Yes      | —       | Additional details about the operation                                           |
| `result.meta`         | `object`    | No       | —       | Additional response metadata (status, paging).                                   |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Success response object",
        "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"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
