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

# Attio Create Attribute: Inputs, Cost & CLI Example

> Add a custom attribute to an object or list schema. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=attio_create_attribute:{"target":"objects","identifier":"{{identifier}}","title":"{{title}}","api_slug":"{{api_slug}}","type":"text"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                     | Type                                                                                                                                                                                                                                                        | Required | Default        | Description                                          |
| ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | -------------- | ---------------------------------------------------- |
| `payload.target`         | `"objects" \| "lists"`                                                                                                                                                                                                                                      | Yes      |                | Whether the resource belongs to an object or a list. |
| `payload.identifier`     | `string`                                                                                                                                                                                                                                                    | Yes      |                | Object or list slug/ID.                              |
| `payload.title`          | `string`                                                                                                                                                                                                                                                    | Yes      |                | Human-readable attribute title.                      |
| `payload.api_slug`       | `string`                                                                                                                                                                                                                                                    | Yes      |                | Unique snake\_case API slug for the attribute.       |
| `payload.type`           | `"text" \| "number" \| "checkbox" \| "currency" \| "date" \| "timestamp" \| "rating" \| "status" \| "select" \| "record-reference" \| "actor-reference" \| "location" \| "domain" \| "email-address" \| "phone-number" \| "interaction" \| "personal-name"` | Yes      |                | Attribute data type.                                 |
| `payload.description`    | `string`                                                                                                                                                                                                                                                    | No       |                | Optional description of the attribute.               |
| `payload.is_required`    | `boolean`                                                                                                                                                                                                                                                   | No       | `false`        | Whether the attribute is required.                   |
| `payload.is_unique`      | `boolean`                                                                                                                                                                                                                                                   | No       | `false`        | Whether values must be unique across records.        |
| `payload.is_multiselect` | `boolean`                                                                                                                                                                                                                                                   | No       | `false`        | Whether the attribute allows multiple values.        |
| `payload.config`         | `record`                                                                                                                                                                                                                                                    | No       | `&#123;&#125;` | Type-specific configuration.                         |

### Allowed values

| Field            | Allowed values                                                                                                                                                                                                            |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.target` | `objects`, `lists`                                                                                                                                                                                                        |
| `payload.type`   | `text`, `number`, `checkbox`, `currency`, `date`, `timestamp`, `rating`, `status`, `select`, `record-reference`, `actor-reference`, `location`, `domain`, `email-address`, `phone-number`, `interaction`, `personal-name` |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Create a new attribute on an object or list.",
    "properties": {
      "target": {
        "type": "string",
        "description": "Whether the resource belongs to an object or a list.",
        "enum": [
          "objects",
          "lists"
        ]
      },
      "identifier": {
        "type": "string",
        "description": "Object or list slug/ID.",
        "minLength": 1
      },
      "title": {
        "type": "string",
        "description": "Human-readable attribute title.",
        "minLength": 1
      },
      "api_slug": {
        "type": "string",
        "description": "Unique snake_case API slug for the attribute."
      },
      "type": {
        "type": "string",
        "description": "Attribute data type.",
        "enum": [
          "text",
          "number",
          "checkbox",
          "currency",
          "date",
          "timestamp",
          "rating",
          "status",
          "select",
          "record-reference",
          "actor-reference",
          "location",
          "domain",
          "email-address",
          "phone-number",
          "interaction",
          "personal-name"
        ]
      },
      "description": {
        "type": "string",
        "description": "Optional description of the attribute."
      },
      "is_required": {
        "type": "boolean",
        "description": "Whether the attribute is required.",
        "default": false
      },
      "is_unique": {
        "type": "boolean",
        "description": "Whether values must be unique across records.",
        "default": false
      },
      "is_multiselect": {
        "type": "boolean",
        "description": "Whether the attribute allows multiple values.",
        "default": false
      },
      "config": {
        "type": "object",
        "description": "Type-specific configuration.",
        "default": {},
        "additionalProperties": {}
      }
    },
    "required": [
      "target",
      "identifier",
      "title",
      "api_slug",
      "type"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `record` | Yes      |         | Provider response payload.                     |
| `result.meta` | `record` | 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": "Provider response payload.",
        "additionalProperties": {}
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": {}
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute attio_create_attribute --payload '{
  "target": "objects",
  "identifier": "string",
  "title": "string",
  "api_slug": "string",
  "type": "text"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
