> ## 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

> Remove Lock from Locked Records. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Remove Lock from Locked Records.

<Info>
  Tool ID: `zoho_crm_locking_informations_remove_lock_from_locked_record`
</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_locking_informations_remove_lock_from_locked_record',
  {
    "moduleName": "Example",
    "recordId": "record_123",
    "lockId": "lock_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_locking_informations_remove_lock_from_locked_record --input '{
  "moduleName": "Example",
  "recordId": "record_123",
  "lockId": "lock_123"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get zoho_crm_locking_informations_remove_lock_from_locked_record --json` for the complete live contract.

## Input reference

Use the Remove Lock from Locked Records API to remove locks from locked records in different modules.

| Name                 | Type     | Required | Default | Details                                                                               |
| -------------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------- |
| `payload.moduleName` | `string` | Yes      | —       | The API name of the module to which the locked record belongs. Maximum length: 256.   |
| `payload.recordId`   | `string` | Yes      | —       | The ID of the locked record from which the lock is to be removed. Maximum length: 32. |
| `payload.lockId`     | `string` | Yes      | —       | The ID of the lock to be removed from the locked record. Maximum length: 32.          |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Use the Remove Lock from Locked Records API to remove locks from locked records in different modules.",
    "properties": {
      "moduleName": {
        "type": "string",
        "description": "The API name of the module to which the locked record belongs.",
        "maxLength": 256
      },
      "recordId": {
        "type": "string",
        "description": "The ID of the locked record from which the lock is to be removed.",
        "maxLength": 32
      },
      "lockId": {
        "type": "string",
        "description": "The ID of the lock to be removed from the locked record.",
        "maxLength": 32
      }
    },
    "required": [
      "moduleName",
      "recordId",
      "lockId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                          | Type        | Required | Default | Details                                                                           |
| --------------------------------------------- | ----------- | -------- | ------- | --------------------------------------------------------------------------------- |
| `result.data`                                 | `object`    | Yes      | —       | Successful response                                                               |
| `result.data.data`                            | `array`     | Yes      | —       | responses for removing lock from locked records. Maximum items: 1.                |
| `result.data.data[].status`                   | `"success"` | Yes      | —       | Indicates that the request was successful. Allowed: `success`.                    |
| `result.data.data[].code`                     | `"SUCCESS"` | Yes      | —       | Indicates that the lock removal was successful. Allowed: `SUCCESS`.               |
| `result.data.data[].message`                  | `string`    | Yes      | —       | Message indicating the result of the lock removal operation. Maximum length: 256. |
| `result.data.data[].details`                  | `object`    | Yes      | —       | —                                                                                 |
| `result.data.data[].details.id`               | `string`    | Yes      | —       | The ID of the removed lock.                                                       |
| `result.data.data[].details.Created_Time`     | `string`    | No       | —       | The time when the lock was created.                                               |
| `result.data.data[].details.Modified_Time`    | `string`    | No       | —       | The time when the lock was last modified.                                         |
| `result.data.data[].details.Modified_By`      | `object`    | No       | —       | Details of the user who last modified the lock.                                   |
| `result.data.data[].details.Modified_By.name` | `string`    | Yes      | —       | Name of the user who modified the lock.                                           |
| `result.data.data[].details.Modified_By.id`   | `string`    | Yes      | —       | ID of the user who modified the lock.                                             |
| `result.data.data[].details.Created_By`       | `object`    | No       | —       | Details of the user who created the lock.                                         |
| `result.data.data[].details.Created_By.name`  | `string`    | Yes      | —       | Name of the user who created the lock.                                            |
| `result.data.data[].details.Created_By.id`    | `string`    | Yes      | —       | ID of the user who created the lock.                                              |
| `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": "Successful response",
        "properties": {
          "data": {
            "type": "array",
            "description": "responses for removing lock from locked records.",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Details of the remove lock operation.",
              "properties": {
                "status": {
                  "type": "string",
                  "description": "Indicates that the request was successful.",
                  "enum": [
                    "success"
                  ]
                },
                "code": {
                  "type": "string",
                  "description": "Indicates that the lock removal was successful.",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Message indicating the result of the lock removal operation.",
                  "maxLength": 256
                },
                "details": {
                  "anyOf": [
                    {
                      "type": "object",
                      "description": "Details of the removed lock.",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The ID of the removed lock.",
                          "maxLength": 32
                        },
                        "Created_Time": {
                          "type": "string",
                          "description": "The time when the lock was created.",
                          "format": "date-time"
                        },
                        "Modified_Time": {
                          "type": "string",
                          "description": "The time when the lock was last modified.",
                          "format": "date-time"
                        },
                        "Modified_By": {
                          "type": "object",
                          "description": "Details of the user who last modified the lock.",
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Name of the user who modified the lock.",
                              "maxLength": 256
                            },
                            "id": {
                              "type": "string",
                              "description": "ID of the user who modified the lock.",
                              "maxLength": 32
                            }
                          },
                          "required": [
                            "name",
                            "id"
                          ],
                          "additionalProperties": false
                        },
                        "Created_By": {
                          "type": "object",
                          "description": "Details of the user who created the lock.",
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Name of the user who created the lock.",
                              "maxLength": 256
                            },
                            "id": {
                              "type": "string",
                              "description": "ID of the user who created the lock.",
                              "maxLength": 32
                            }
                          },
                          "required": [
                            "name",
                            "id"
                          ],
                          "additionalProperties": false
                        }
                      },
                      "required": [
                        "id"
                      ],
                      "additionalProperties": false
                    },
                    {
                      "type": "object",
                      "description": "Details of the removed lock.",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The ID of the removed lock.",
                          "maxLength": 32
                        }
                      },
                      "required": [
                        "id"
                      ],
                      "additionalProperties": false
                    }
                  ]
                }
              },
              "required": [
                "status",
                "code",
                "message",
                "details"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "data"
        ],
        "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)
