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

> Create Notes for a Record. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Create Notes for a Record.

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

## Run this action

This action has conditional or dynamic input fields that cannot be represented by a reliable static example.

Inspect the live contract before executing it:

```bash theme={null}
deepline tools get zoho_crm_related_notes_create_notes --json
```

## Example response

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

## Input reference

Request payload for creating notes

| Name                         | Type     | Required | Default | Details                                                                                                                                    |
| ---------------------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `payload.parentRecordModule` | `string` | Yes      | —       | The module API name of the parent record (e.g., Contacts, Leads, Deals, Accounts) Maximum length: 50. Pattern: `^[A-Za-z_][A-Za-z0-9_]*$`. |
| `payload.parentRecordId`     | `string` | Yes      | —       | The unique identifier of the parent record. Must be a valid numeric record ID. Format: `int64`. Pattern: `^[0-9]+$`.                       |
| `payload.data`               | `array`  | Yes      | —       | Array of note objects to create Maximum items: 200.                                                                                        |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request payload for creating notes",
    "properties": {
      "parentRecordModule": {
        "type": "string",
        "description": "The module API name of the parent record (e.g., Contacts, Leads, Deals, Accounts)",
        "maxLength": 50,
        "pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
      },
      "parentRecordId": {
        "type": "string",
        "description": "The unique identifier of the parent record. Must be a valid numeric record ID.",
        "pattern": "^[0-9]+$",
        "format": "int64"
      },
      "data": {
        "type": "array",
        "description": "Array of note objects to create",
        "maxItems": 200,
        "items": {
          "type": "object",
          "description": "Note object with title, content, and parent information",
          "properties": {
            "Note_Content": {
              "type": "string",
              "description": "The content/body of the note",
              "maxLength": 65535
            },
            "Note_Title": {
              "type": "string",
              "description": "The title of the note",
              "maxLength": 120
            },
            "Parent_Id": {
              "type": "object",
              "description": "Parent record information",
              "properties": {
                "module": {
                  "type": "object",
                  "description": "Module information of the parent record",
                  "properties": {
                    "api_name": {
                      "type": "string",
                      "description": "API name of the parent module",
                      "maxLength": 50
                    },
                    "id": {
                      "type": "string",
                      "description": "Module ID",
                      "format": "int64"
                    }
                  },
                  "additionalProperties": false
                },
                "id": {
                  "type": "string",
                  "description": "Unique identifier of the parent record",
                  "format": "int64"
                }
              },
              "required": [
                "module",
                "id"
              ],
              "additionalProperties": false
            }
          },
          "additionalProperties": true
        }
      }
    },
    "required": [
      "parentRecordModule",
      "parentRecordId",
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                          | Type        | Required | Default | Details                                                        |
| --------------------------------------------- | ----------- | -------- | ------- | -------------------------------------------------------------- |
| `result.data`                                 | `object`    | Yes      | —       | Success response for note creation                             |
| `result.data.data`                            | `array`     | Yes      | —       | Array of creation results Maximum items: 200.                  |
| `result.data.data[].code`                     | `"SUCCESS"` | Yes      | —       | Result code Allowed: `SUCCESS`.                                |
| `result.data.data[].message`                  | `string`    | Yes      | —       | Result message Maximum length: 500.                            |
| `result.data.data[].status`                   | `"success"` | Yes      | —       | Status of the operation Allowed: `success`.                    |
| `result.data.data[].details`                  | `object`    | Yes      | —       | Created note details                                           |
| `result.data.data[].details.id`               | `string`    | Yes      | —       | Unique identifier of the created note Format: `int64`.         |
| `result.data.data[].details.Modified_Time`    | `string`    | Yes      | —       | Timestamp when the note was last modified Format: `date-time`. |
| `result.data.data[].details.Created_Time`     | `string`    | Yes      | —       | Timestamp when the note was created Format: `date-time`.       |
| `result.data.data[].details.Created_By`       | `object`    | Yes      | —       | User who created the note                                      |
| `result.data.data[].details.Created_By.name`  | `string`    | Yes      | —       | Name of the user Maximum length: 255.                          |
| `result.data.data[].details.Created_By.id`    | `string`    | Yes      | —       | Unique identifier of the user Format: `int64`.                 |
| `result.data.data[].details.Modified_By`      | `object`    | Yes      | —       | User who last modified the note                                |
| `result.data.data[].details.Modified_By.name` | `string`    | Yes      | —       | Name of the user Maximum length: 255.                          |
| `result.data.data[].details.Modified_By.id`   | `string`    | Yes      | —       | Unique identifier of the user Format: `int64`.                 |
| `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 for note creation",
        "properties": {
          "data": {
            "type": "array",
            "description": "Array of creation results",
            "maxItems": 200,
            "items": {
              "type": "object",
              "description": "Individual note creation result",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Result code",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Result message",
                  "maxLength": 500
                },
                "status": {
                  "type": "string",
                  "description": "Status of the operation",
                  "enum": [
                    "success"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "Created note details",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier of the created note",
                      "format": "int64"
                    },
                    "Modified_Time": {
                      "type": "string",
                      "description": "Timestamp when the note was last modified",
                      "format": "date-time"
                    },
                    "Created_Time": {
                      "type": "string",
                      "description": "Timestamp when the note was created",
                      "format": "date-time"
                    },
                    "Created_By": {
                      "type": "object",
                      "description": "User who created the note",
                      "properties": {
                        "name": {
                          "type": "string",
                          "description": "Name of the user",
                          "maxLength": 255
                        },
                        "id": {
                          "type": "string",
                          "description": "Unique identifier of the user",
                          "format": "int64"
                        }
                      },
                      "required": [
                        "name",
                        "id"
                      ],
                      "additionalProperties": false
                    },
                    "Modified_By": {
                      "type": "object",
                      "description": "User who last modified the note",
                      "properties": {
                        "name": {
                          "type": "string",
                          "description": "Name of the user",
                          "maxLength": 255
                        },
                        "id": {
                          "type": "string",
                          "description": "Unique identifier of the user",
                          "format": "int64"
                        }
                      },
                      "required": [
                        "name",
                        "id"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "required": [
                    "id",
                    "Modified_Time",
                    "Created_Time",
                    "Created_By",
                    "Modified_By"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "code",
                "message",
                "status",
                "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)
