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

> PUT /settings/unsubscribe_links. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

PUT /settings/unsubscribe\_links.

<Info>
  Tool ID: `zoho_crm_unsubscribe_links_put_unsubscribe_links`
</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_unsubscribe_links_put_unsubscribe_links',
  {
    "unsubscribe_links": [
      {
        "id": "id_123"
      }
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_unsubscribe_links_put_unsubscribe_links --input '{
  "unsubscribe_links": [
    {
      "id": "id_123"
    }
  ]
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "unsubscribe_links": [
      {
        "code": "example",
        "details": {
          "id": "id_123"
        },
        "message": "Example message"
      }
    ]
  }
}
```

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

## Input reference

Body schema for PUT requests proposing updates to unsubscribe link configurations, demanding detailed entries across fields.

| Name                        | Type    | Required | Default | Details                                    |
| --------------------------- | ------- | -------- | ------- | ------------------------------------------ |
| `payload.unsubscribe_links` | `array` | Yes      | —       | Root key name (Required) Maximum items: 1. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Body schema for PUT requests proposing updates to unsubscribe link configurations, demanding detailed entries across fields.",
    "properties": {
      "unsubscribe_links": {
        "type": "array",
        "description": "Root key name (Required)",
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "Base schema for array items",
          "properties": {
            "submission_message": {
              "type": "string",
              "description": "Field: submission_message",
              "maxLength": 255
            },
            "submission_redirect_url": {
              "type": "string",
              "description": "Field: submission_redirect_url",
              "maxLength": 255
            },
            "page_type": {
              "type": "string",
              "description": "Field: page_type",
              "maxLength": 255
            },
            "custom_location_url": {
              "type": "string",
              "description": "Field: custom_location_url",
              "maxLength": 255
            },
            "name": {
              "type": "string",
              "description": "Field: name",
              "maxLength": 255
            },
            "id": {
              "type": "string",
              "description": "Field: id",
              "maxLength": 255
            },
            "standard_page_message": {
              "type": "string",
              "description": "Field: standard_page_message",
              "maxLength": 255
            },
            "submission_action_type": {
              "type": "string",
              "description": "Field: submission_action_type",
              "maxLength": 255
            }
          },
          "required": [
            "id"
          ],
          "additionalProperties": true
        }
      }
    },
    "required": [
      "unsubscribe_links"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                         | Type     | Required | Default | Details                                                                             |
| -------------------------------------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------- |
| `result.data`                                | `object` | Yes      | —       | Collection of action results produced after modifying unsubscribe links.            |
| `result.data.unsubscribe_links`              | `array`  | No       | —       | Field: unsubscribe\_links Maximum items: 1.                                         |
| `result.data.unsubscribe_links[].code`       | `string` | No       | —       | Field: code Maximum length: 255.                                                    |
| `result.data.unsubscribe_links[].details`    | `object` | No       | —       | Reference to the entity affected by an operation, containing its unique identifier. |
| `result.data.unsubscribe_links[].details.id` | `string` | No       | —       | Field: id Maximum length: 255.                                                      |
| `result.data.unsubscribe_links[].message`    | `string` | No       | —       | Field: message Maximum length: 255.                                                 |
| `result.data.unsubscribe_links[].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": "Collection of action results produced after modifying unsubscribe links.",
        "properties": {
          "unsubscribe_links": {
            "type": "array",
            "description": "Field: unsubscribe_links",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Status of an unsubscribe link operation, including outcome code, message, and the affected entity reference.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Field: code",
                  "maxLength": 255
                },
                "details": {
                  "type": "object",
                  "description": "Reference to the entity affected by an operation, containing its unique identifier.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Field: id",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "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)
