> ## 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 Record Locking Configuration. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Delete Record Locking Configuration.

<Info>
  Tool ID: `zoho_crm_record_locking_configurations_delete_record_locking_configuration`
</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_locking_configurations_delete_record_locking_configuration',
  {
    "module": "example",
    "ids": "example"
  },
);

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

### CLI

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

## Example response

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

```json theme={null}
{
  "data": {
    "record_locking_configurations": [
      {
        "status": "success",
        "code": "SUCCESS",
        "message": "Example message",
        "details": {
          "id": "id_123"
        }
      }
    ]
  }
}
```

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

## Input reference

To delete the record locking configuration for different modules.

| Name             | Type     | Required | Default | Details                                                                                                  |
| ---------------- | -------- | -------- | ------- | -------------------------------------------------------------------------------------------------------- |
| `payload.module` | `string` | Yes      | —       | The name of the module for which the record locking configuration is to be deleted. Maximum length: 256. |
| `payload.ids`    | `string` | Yes      | —       | Comma-separated IDs of the record locking configurations to be deleted. Maximum length: 256.             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "To delete the record locking configuration for different modules.",
    "properties": {
      "module": {
        "type": "string",
        "description": "The name of the module for which the record locking configuration is to be deleted.",
        "maxLength": 256
      },
      "ids": {
        "type": "string",
        "description": "Comma-separated IDs of the record locking configurations to be deleted.",
        "maxLength": 256
      }
    },
    "required": [
      "module",
      "ids"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                     | Type        | Required | Default | Details                                                                     |
| -------------------------------------------------------- | ----------- | -------- | ------- | --------------------------------------------------------------------------- |
| `result.data`                                            | `object`    | Yes      | —       | Response object for successful deletion of record locking configuration.    |
| `result.data.record_locking_configurations`              | `array`     | Yes      | —       | List of record locking configurations that were deleted. Maximum items: 1.  |
| `result.data.record_locking_configurations[].status`     | `"success"` | Yes      | —       | Indicates successful operation. Allowed: `success`. Maximum length: 256.    |
| `result.data.record_locking_configurations[].code`       | `"SUCCESS"` | Yes      | —       | Success code for delete operation. Allowed: `SUCCESS`. Maximum length: 256. |
| `result.data.record_locking_configurations[].message`    | `string`    | Yes      | —       | Message confirming successful deletion. Maximum length: 256.                |
| `result.data.record_locking_configurations[].details`    | `object`    | Yes      | —       | Additional info about the deleted configuration.                            |
| `result.data.record_locking_configurations[].details.id` | `string`    | Yes      | —       | ID of the deleted record locking configuration. Maximum length: 256.        |
| `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": "Response object for successful deletion of record locking configuration.",
        "properties": {
          "record_locking_configurations": {
            "type": "array",
            "description": "List of record locking configurations that were deleted.",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Details of a deleted record locking configuration.",
              "properties": {
                "status": {
                  "type": "string",
                  "description": "Indicates successful operation.",
                  "maxLength": 256,
                  "enum": [
                    "success"
                  ]
                },
                "code": {
                  "type": "string",
                  "description": "Success code for delete operation.",
                  "maxLength": 256,
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Message confirming successful deletion.",
                  "maxLength": 256
                },
                "details": {
                  "type": "object",
                  "description": "Additional info about the deleted configuration.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID of the deleted record locking configuration.",
                      "maxLength": 256
                    }
                  },
                  "required": [
                    "id"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "status",
                "code",
                "message",
                "details"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "record_locking_configurations"
        ],
        "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)
