> ## 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 Share Records. Zoho CRM Share Records Delete Share Records reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline.

Delete Share Records.

<Info>
  Tool ID: `zoho_crm_share_records_delete_share_records`
</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_share_records_delete_share_records',
  {
    "moduleApiName": "Example",
    "recordId": "record_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_share_records_delete_share_records --input '{
  "moduleApiName": "Example",
  "recordId": "record_123"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "share": {
      "code": "SUCCESS",
      "details": {
        "id": "id_123"
      },
      "message": "Sharing Revoked",
      "status": "success"
    }
  }
}
```

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

## Input reference

Delete Share Records. API exposed to customers

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

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Delete Share Records. API exposed to customers",
    "properties": {
      "moduleApiName": {
        "type": "string",
        "description": "API name of the module",
        "maxLength": 100
      },
      "recordId": {
        "type": "string",
        "description": "ID of the record",
        "maxLength": 20
      }
    },
    "required": [
      "moduleApiName",
      "recordId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                           | Type                | Required | Default | Details                                                       |
| ------------------------------ | ------------------- | -------- | ------- | ------------------------------------------------------------- |
| `result.data`                  | `object`            | Yes      | —       | Revoke Sharing Success Response                               |
| `result.data.share`            | `object`            | No       | —       | share record revoke response details                          |
| `result.data.share.code`       | `"SUCCESS"`         | Yes      | —       | response code Allowed: `SUCCESS`.                             |
| `result.data.share.details`    | `object`            | Yes      | —       | additional information                                        |
| `result.data.share.details.id` | `string`            | No       | —       | ID of the record whose sharing is revoked Maximum length: 20. |
| `result.data.share.message`    | `"Sharing Revoked"` | Yes      | —       | response message Allowed: `Sharing Revoked`.                  |
| `result.data.share.status`     | `"success"`         | Yes      | —       | response status Allowed: `success`.                           |
| `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": "Revoke Sharing Success Response",
        "properties": {
          "share": {
            "type": "object",
            "description": "share record revoke response details",
            "properties": {
              "code": {
                "type": "string",
                "description": "response code",
                "enum": [
                  "SUCCESS"
                ]
              },
              "details": {
                "type": "object",
                "description": "additional information",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "ID of the record whose sharing is revoked",
                    "maxLength": 20
                  }
                },
                "additionalProperties": false
              },
              "message": {
                "type": "string",
                "description": "response message",
                "enum": [
                  "Sharing Revoked"
                ]
              },
              "status": {
                "type": "string",
                "description": "response status",
                "enum": [
                  "success"
                ]
              }
            },
            "required": [
              "code",
              "details",
              "message",
              "status"
            ],
            "additionalProperties": false
          }
        },
        "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)
