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

> Get From Addresses. Zoho CRM From Addresses Get Addresses reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Get From Addresses.

<Info>
  Tool ID: `zoho_crm_from_addresses_get_addresses`
</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_from_addresses_get_addresses',
  {},
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_from_addresses_get_addresses --input '{}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "from_addresses": [
      {
        "email": "jane.doe@example.com",
        "type": "example",
        "user_name": "Example",
        "default": true
      }
    ]
  }
}
```

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

## Input reference

Get the list of email addresses that you can send emails from.

This action does not require input fields.

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Get the list of email addresses that you can send emails from.",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                     | Type             | Required | Default | Details                                                                                                 |
| ---------------------------------------- | ---------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------- |
| `result.data`                            | `object`         | Yes      | —       | Response object for getting from addresses                                                              |
| `result.data.from_addresses`             | `array`          | Yes      | —       | List of from addresses Maximum items: 200.                                                              |
| `result.data.from_addresses[].email`     | `string`         | Yes      | —       | Email address Maximum length: 254. Pattern: `[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]&#123;2,&#125;`. |
| `result.data.from_addresses[].type`      | `string`         | Yes      | —       | Type of from address Maximum length: 32.                                                                |
| `result.data.from_addresses[].user_name` | `string`         | Yes      | —       | User name associated with the from address Maximum length: 256.                                         |
| `result.data.from_addresses[].id`        | `string \| null` | No       | —       | Unique identifier for the from address Pattern: `[0-9]+`.                                               |
| `result.data.from_addresses[].default`   | `boolean`        | Yes      | —       | Indicates if this is the default from address                                                           |
| `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 getting from addresses",
        "properties": {
          "from_addresses": {
            "type": "array",
            "description": "List of from addresses",
            "maxItems": 200,
            "items": {
              "type": "object",
              "description": "From Address details",
              "properties": {
                "email": {
                  "type": "string",
                  "description": "Email address",
                  "maxLength": 254,
                  "pattern": "[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}"
                },
                "type": {
                  "type": "string",
                  "description": "Type of from address",
                  "maxLength": 32
                },
                "user_name": {
                  "type": "string",
                  "description": "User name associated with the from address",
                  "maxLength": 256
                },
                "id": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Unique identifier for the from address",
                  "pattern": "[0-9]+"
                },
                "default": {
                  "type": "boolean",
                  "description": "Indicates if this is the default from address"
                }
              },
              "required": [
                "email",
                "type",
                "user_name",
                "default"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "from_addresses"
        ],
        "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)
