> ## 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 portal user type. Zoho CRM Portal User Type Get Portal User Type reference includes SDK V2 and CLI requests, input constraints, response fields,.

Get portal user type.

<Info>
  Tool ID: `zoho_crm_portal_user_type_get_portal_user_type`
</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_portal_user_type_get_portal_user_type --json
```

## Example response

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

## Input reference

Retrieve details for the specified portal user type.

| Name                 | Type     | Required | Default | Details                                                                                                                                              |
| -------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.portal`     | `string` | Yes      | —       | Portal unique name (path parameter). Provide the portal identifier as defined in the account. Minimum length: 1. Maximum length: 255.                |
| `payload.userTypeId` | `string` | Yes      | —       | Unique id of the portal user type. Represented as a long numeric id encoded as a string. Minimum length: 1. Maximum length: 32. Pattern: `^[0-9]+$`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve details for the specified portal user type.",
    "properties": {
      "portal": {
        "type": "string",
        "description": "Portal unique name (path parameter). Provide the portal identifier as defined in the account.",
        "minLength": 1,
        "maxLength": 255
      },
      "userTypeId": {
        "type": "string",
        "description": "Unique id of the portal user type. Represented as a long numeric id encoded as a string.",
        "minLength": 1,
        "maxLength": 32,
        "pattern": "^[0-9]+$"
      }
    },
    "required": [
      "portal",
      "userTypeId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                    | Type     | Required | Default | Details                                                 |
| ----------------------- | -------- | -------- | ------- | ------------------------------------------------------- |
| `result.data`           | `object` | Yes      | —       | Response schema for retrieving a portal user type.      |
| `result.data.user_type` | `array`  | No       | —       | Array of portal user type objects. Maximum items: 1000. |
| `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 schema for retrieving a portal user type.",
        "properties": {
          "user_type": {
            "type": "array",
            "description": "Array of portal user type objects.",
            "maxItems": 1000,
            "items": {
              "type": "object",
              "description": "Portal user type object.",
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": true
      },
      "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)
