> ## 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 /services_s/{id}. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

DELETE /services\_s/\{id}.

<Info>
  Tool ID: `zoho_crm_services_delete_service_by_id`
</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_services_delete_service_by_id',
  {
    "id": "id_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_services_delete_service_by_id --input '{
  "id": "id_123"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "data": [
      {
        "code": "example",
        "details": {
          "Modified_Time": "example",
          "Modified_By": {},
          "Created_Time": "example"
        },
        "message": "Example message"
      }
    ]
  }
}
```

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

## Input reference

services record delete by id

| Name         | Type     | Required | Default | Details                                 |
| ------------ | -------- | -------- | ------- | --------------------------------------- |
| `payload.id` | `string` | Yes      | —       | Path parameter: id Maximum length: 100. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "services record delete by id",
    "properties": {
      "id": {
        "type": "string",
        "description": "Path parameter: id",
        "maxLength": 100
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                          | Type     | Required | Default | Details                                        |
| --------------------------------------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data`                                 | `object` | Yes      | —       | services records delete , success response     |
| `result.data.data`                            | `array`  | No       | —       | Field: data Maximum items: 1.                  |
| `result.data.data[].code`                     | `string` | No       | —       | Field: code Maximum length: 255.               |
| `result.data.data[].details`                  | `object` | No       | —       | Nested schema for details                      |
| `result.data.data[].details.Modified_Time`    | `string` | No       | —       | Field: Modified\_Time Maximum length: 255.     |
| `result.data.data[].details.Modified_By`      | `object` | No       | —       | Nested schema for Modified\_By                 |
| `result.data.data[].details.Modified_By.name` | `string` | No       | —       | Field: name Maximum length: 255.               |
| `result.data.data[].details.Modified_By.id`   | `string` | No       | —       | Field: id Maximum length: 255.                 |
| `result.data.data[].details.Created_Time`     | `string` | No       | —       | Field: Created\_Time Maximum length: 255.      |
| `result.data.data[].details.id`               | `string` | No       | —       | Field: id Maximum length: 255.                 |
| `result.data.data[].details.Created_By`       | `object` | No       | —       | Nested schema for Created\_By                  |
| `result.data.data[].details.Created_By.name`  | `string` | No       | —       | Field: name Maximum length: 255.               |
| `result.data.data[].details.Created_By.id`    | `string` | No       | —       | Field: id Maximum length: 255.                 |
| `result.data.data[].message`                  | `string` | No       | —       | Field: message Maximum length: 255.            |
| `result.data.data[].status`                   | `string` | No       | —       | Field: status Maximum length: 255.             |
| `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": "services records delete , success response",
        "properties": {
          "data": {
            "type": "array",
            "description": "Field: data",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Nested schema for data",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Field: code",
                  "maxLength": 255
                },
                "details": {
                  "type": "object",
                  "description": "Nested schema for details",
                  "properties": {
                    "Modified_Time": {
                      "type": "string",
                      "description": "Field: Modified_Time",
                      "maxLength": 255
                    },
                    "Modified_By": {
                      "type": "object",
                      "description": "Nested schema for Modified_By",
                      "properties": {
                        "name": {
                          "type": "string",
                          "description": "Field: name",
                          "maxLength": 255
                        },
                        "id": {
                          "type": "string",
                          "description": "Field: id",
                          "maxLength": 255
                        }
                      },
                      "additionalProperties": false
                    },
                    "Created_Time": {
                      "type": "string",
                      "description": "Field: Created_Time",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "Field: id",
                      "maxLength": 255
                    },
                    "Created_By": {
                      "type": "object",
                      "description": "Nested schema for Created_By",
                      "properties": {
                        "name": {
                          "type": "string",
                          "description": "Field: name",
                          "maxLength": 255
                        },
                        "id": {
                          "type": "string",
                          "description": "Field: id",
                          "maxLength": 255
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "additionalProperties": true
                },
                "message": {
                  "type": "string",
                  "description": "Field: message",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "Field: status",
                  "maxLength": 255
                }
              },
              "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)
