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

# Outreach Action Doc: Inputs, Cost & CLI Example

> Find Outreach accounts. Outreach Outreach List Accounts docs include request fields, response shape, pricing notes, and Deepline CLI examples.

## 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=outreach_list_accounts:{}' --json
```

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

## Input Schema

| Name                               | Type      | Required | Default | Description                                                                              |
| ---------------------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------- |
| `payload.newFilterSyntax`          | `boolean` | No       |         | Use Outreach array/range filter syntax for literal commas and ranges.                    |
| `payload.page_size`                | `integer` | No       |         | Cursor page size sent as page\[size].                                                    |
| `payload.page_after`               | `string`  | No       |         | Cursor returned by the previous page.                                                    |
| `payload.page_before`              | `string`  | No       |         | Cursor returned by the next page.                                                        |
| `payload.page_limit`               | `integer` | No       |         | Deprecated offset-pagination limit sent as page\[limit]. Prefer page\_size.              |
| `payload.page_offset`              | `integer` | No       |         | Deprecated offset-pagination offset sent as page\[offset]. Prefer cursors.               |
| `payload.count`                    | `boolean` | No       |         | Request Outreach total-count metadata; false is faster for pagination.                   |
| `payload.sort`                     | `string`  | No       |         | Comma-separated sortable fields; prefix a field with - for descending order.             |
| `payload.include`                  | `string`  | No       |         | Comma-separated related resources to include.                                            |
| `payload.provideAuthorizationMeta` | `boolean` | No       |         | Request resource authorization metadata.                                                 |
| `payload.provideDataConnections`   | `boolean` | No       |         | Request resource data-connection metadata.                                               |
| `payload.fields`                   | `object`  | No       |         | Sparse fieldsets keyed by JSON:API resource type, sent as fields\[resource].             |
| `payload.filters`                  | `object`  | No       |         | Endpoint-specific Outreach filters. Relationship attributes use keys such as owner\[id]. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Get a Collection of Accounts",
    "properties": {
      "newFilterSyntax": {
        "type": "boolean",
        "description": "Use Outreach array/range filter syntax for literal commas and ranges."
      },
      "page_size": {
        "type": "integer",
        "description": "Cursor page size sent as page[size].",
        "minimum": 1,
        "maximum": 1000
      },
      "page_after": {
        "type": "string",
        "description": "Cursor returned by the previous page."
      },
      "page_before": {
        "type": "string",
        "description": "Cursor returned by the next page."
      },
      "page_limit": {
        "type": "integer",
        "description": "Deprecated offset-pagination limit sent as page[limit]. Prefer page_size.",
        "minimum": 1,
        "maximum": 1000
      },
      "page_offset": {
        "type": "integer",
        "description": "Deprecated offset-pagination offset sent as page[offset]. Prefer cursors.",
        "minimum": 0,
        "maximum": 10000
      },
      "count": {
        "type": "boolean",
        "description": "Request Outreach total-count metadata; false is faster for pagination."
      },
      "sort": {
        "type": "string",
        "description": "Comma-separated sortable fields; prefix a field with - for descending order."
      },
      "include": {
        "type": "string",
        "description": "Comma-separated related resources to include."
      },
      "provideAuthorizationMeta": {
        "type": "boolean",
        "description": "Request resource authorization metadata."
      },
      "provideDataConnections": {
        "type": "boolean",
        "description": "Request resource data-connection metadata."
      },
      "fields": {
        "type": "object",
        "description": "Sparse fieldsets keyed by JSON:API resource type, sent as fields[resource].",
        "properties": {
          "account": {
            "type": "string"
          },
          "accountNote": {
            "type": "string"
          },
          "auditLog": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "batchItem": {
            "type": "string"
          },
          "call": {
            "type": "string"
          },
          "callDisposition": {
            "type": "string"
          },
          "callPurpose": {
            "type": "string"
          },
          "complianceRequest": {
            "type": "string"
          },
          "contentCategory": {
            "type": "string"
          },
          "contentCategoryMembership": {
            "type": "string"
          },
          "contentCategoryOwnership": {
            "type": "string"
          },
          "customDuty": {
            "type": "string"
          },
          "duty": {
            "type": "string"
          },
          "emailAddress": {
            "type": "string"
          },
          "event": {
            "type": "string"
          },
          "favorite": {
            "type": "string"
          },
          "import": {
            "type": "string"
          },
          "kaiaRecording": {
            "type": "string"
          },
          "kaiaVoiceImport": {
            "type": "string"
          },
          "mailAlias": {
            "type": "string"
          },
          "mailbox": {
            "type": "string"
          },
          "mailing": {
            "type": "string"
          },
          "opportunity": {
            "type": "string"
          },
          "opportunityProspectRole": {
            "type": "string"
          },
          "opportunityStage": {
            "type": "string"
          },
          "orgSetting": {
            "type": "string"
          },
          "persona": {
            "type": "string"
          },
          "phoneNumber": {
            "type": "string"
          },
          "product": {
            "type": "string"
          },
          "profile": {
            "type": "string"
          },
          "prospect": {
            "type": "string"
          },
          "prospectNote": {
            "type": "string"
          },
          "purchase": {
            "type": "string"
          },
          "recipient": {
            "type": "string"
          },
          "role": {
            "type": "string"
          },
          "ruleset": {
            "type": "string"
          },
          "sequence": {
            "type": "string"
          },
          "sequenceState": {
            "type": "string"
          },
          "sequenceStep": {
            "type": "string"
          },
          "sequenceTemplate": {
            "type": "string"
          },
          "snippet": {
            "type": "string"
          },
          "stage": {
            "type": "string"
          },
          "task": {
            "type": "string"
          },
          "taskDisposition": {
            "type": "string"
          },
          "taskPriority": {
            "type": "string"
          },
          "taskPurpose": {
            "type": "string"
          },
          "team": {
            "type": "string"
          },
          "template": {
            "type": "string"
          },
          "user": {
            "type": "string"
          },
          "webhook": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "filters": {
        "type": "object",
        "description": "Endpoint-specific Outreach filters. Relationship attributes use keys such as owner[id].",
        "properties": {
          "id": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "id[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "id[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "createdAt": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "createdAt[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "createdAt[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "updatedAt": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "updatedAt[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "updatedAt[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "buyerIntentScore": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "buyerIntentScore[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "buyerIntentScore[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "customId": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "customId[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "customId[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "domain": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "domain[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "domain[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "name[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "name[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "named": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "named[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "named[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "sharingTeamId": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "sharingTeamId[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "sharingTeamId[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "touchedAt": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "touchedAt[gte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "touchedAt[lte]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              }
            ]
          },
          "q": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          },
          "owner[id]": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "number"
                    },
                    {
                      "type": "boolean"
                    }
                  ]
                }
              },
              {
                "type": "object",
                "description": "Inclusive range bounds. Requires newFilterSyntax=true and becomes filter[field][gte]/[lte].",
                "minProperties": 1,
                "properties": {
                  "gte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  },
                  "lte": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      }
                    ]
                  }
                },
                "additionalProperties": false
              }
            ]
          }
        },
        "additionalProperties": false
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `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": {
        "description": "Provider response payload.",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "attributes": {
                  "type": "object",
                  "description": "A descriptor of a named company used to categorize prospects within an account-based sales approach.",
                  "properties": {
                    "annualRevenueRange": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Define the annual revenue range",
                      "maxLength": 255
                    },
                    "buyerIntentScore": {
                      "type": [
                        "number",
                        "null"
                      ],
                      "description": "A custom score given to measure the quality of the account.",
                      "format": "float"
                    },
                    "companyType": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "A description of the company’s type (e.g. \"Public Company\").",
                      "maxLength": 255
                    },
                    "createdAt": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The date and time the account was created.",
                      "format": "date-time"
                    },
                    "custom1": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s first custom field.",
                      "maxLength": 32000
                    },
                    "custom2": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s second custom field.",
                      "maxLength": 32000
                    },
                    "custom3": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s third custom field.",
                      "maxLength": 32000
                    },
                    "custom4": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s fourth custom field.",
                      "maxLength": 32000
                    },
                    "custom5": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s fifth custom field.",
                      "maxLength": 32000
                    },
                    "custom6": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s sixth custom field.",
                      "maxLength": 32000
                    },
                    "custom7": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s seventh custom field.",
                      "maxLength": 32000
                    },
                    "custom8": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s eight custom field.",
                      "maxLength": 32000
                    },
                    "custom9": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s ninth custom field.",
                      "maxLength": 32000
                    },
                    "custom10": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 10th custom field.",
                      "maxLength": 32000
                    },
                    "custom11": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 11th custom field.",
                      "maxLength": 32000
                    },
                    "custom12": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 12th custom field.",
                      "maxLength": 32000
                    },
                    "custom13": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 13th custom field.",
                      "maxLength": 32000
                    },
                    "custom14": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 14th custom field.",
                      "maxLength": 32000
                    },
                    "custom15": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 15th custom field.",
                      "maxLength": 32000
                    },
                    "custom16": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 16th custom field.",
                      "maxLength": 32000
                    },
                    "custom17": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 17th custom field.",
                      "maxLength": 32000
                    },
                    "custom18": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 18th custom field.",
                      "maxLength": 32000
                    },
                    "custom19": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 19th custom field.",
                      "maxLength": 32000
                    },
                    "custom20": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 20th custom field.",
                      "maxLength": 32000
                    },
                    "custom21": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 21st custom field.",
                      "maxLength": 32000
                    },
                    "custom22": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 22nd custom field.",
                      "maxLength": 32000
                    },
                    "custom23": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 23rd custom field.",
                      "maxLength": 32000
                    },
                    "custom24": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 24th custom field.",
                      "maxLength": 32000
                    },
                    "custom25": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 25th custom field.",
                      "maxLength": 32000
                    },
                    "custom26": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 26th custom field.",
                      "maxLength": 32000
                    },
                    "custom27": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 27th custom field.",
                      "maxLength": 32000
                    },
                    "custom28": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 28th custom field.",
                      "maxLength": 32000
                    },
                    "custom29": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 29th custom field.",
                      "maxLength": 32000
                    },
                    "custom30": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 30th custom field.",
                      "maxLength": 32000
                    },
                    "custom31": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 31st custom field.",
                      "maxLength": 32000
                    },
                    "custom32": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 32nd custom field.",
                      "maxLength": 32000
                    },
                    "custom33": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 33rd custom field.",
                      "maxLength": 32000
                    },
                    "custom34": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 34th custom field.",
                      "maxLength": 32000
                    },
                    "custom35": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 35th custom field.",
                      "maxLength": 32000
                    },
                    "custom36": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 36th custom field.",
                      "maxLength": 32000
                    },
                    "custom37": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 37th custom field.",
                      "maxLength": 32000
                    },
                    "custom38": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 38th custom field.",
                      "maxLength": 32000
                    },
                    "custom39": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 39th custom field.",
                      "maxLength": 32000
                    },
                    "custom40": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 40th custom field.",
                      "maxLength": 32000
                    },
                    "custom41": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 41st custom field.",
                      "maxLength": 32000
                    },
                    "custom42": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 42nd custom field.",
                      "maxLength": 32000
                    },
                    "custom43": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 43rd custom field.",
                      "maxLength": 32000
                    },
                    "custom44": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 44th custom field.",
                      "maxLength": 32000
                    },
                    "custom45": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 45th custom field.",
                      "maxLength": 32000
                    },
                    "custom46": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 46th custom field.",
                      "maxLength": 32000
                    },
                    "custom47": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 47th custom field.",
                      "maxLength": 32000
                    },
                    "custom48": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 48th custom field.",
                      "maxLength": 32000
                    },
                    "custom49": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 49th custom field.",
                      "maxLength": 32000
                    },
                    "custom50": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 50th custom field.",
                      "maxLength": 32000
                    },
                    "custom51": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 51st custom field.",
                      "maxLength": 32000
                    },
                    "custom52": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 52nd custom field.",
                      "maxLength": 32000
                    },
                    "custom53": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 53rd custom field.",
                      "maxLength": 32000
                    },
                    "custom54": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 54th custom field.",
                      "maxLength": 32000
                    },
                    "custom55": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 55th custom field.",
                      "maxLength": 32000
                    },
                    "custom56": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 56th custom field.",
                      "maxLength": 32000
                    },
                    "custom57": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 57th custom field.",
                      "maxLength": 32000
                    },
                    "custom58": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 58th custom field.",
                      "maxLength": 32000
                    },
                    "custom59": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 59th custom field.",
                      "maxLength": 32000
                    },
                    "custom60": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 60th custom field.",
                      "maxLength": 32000
                    },
                    "custom61": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 61st custom field.",
                      "maxLength": 32000
                    },
                    "custom62": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 62nd custom field.",
                      "maxLength": 32000
                    },
                    "custom63": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 63rd custom field.",
                      "maxLength": 32000
                    },
                    "custom64": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 64th custom field.",
                      "maxLength": 32000
                    },
                    "custom65": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 65th custom field.",
                      "maxLength": 32000
                    },
                    "custom66": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 66th custom field.",
                      "maxLength": 32000
                    },
                    "custom67": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 67th custom field.",
                      "maxLength": 32000
                    },
                    "custom68": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 68th custom field.",
                      "maxLength": 32000
                    },
                    "custom69": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 69th custom field.",
                      "maxLength": 32000
                    },
                    "custom70": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 70th custom field.",
                      "maxLength": 32000
                    },
                    "custom71": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 71st custom field.",
                      "maxLength": 32000
                    },
                    "custom72": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 72nd custom field.",
                      "maxLength": 32000
                    },
                    "custom73": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 73rd custom field.",
                      "maxLength": 32000
                    },
                    "custom74": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 74th custom field.",
                      "maxLength": 32000
                    },
                    "custom75": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 75th custom field.",
                      "maxLength": 32000
                    },
                    "custom76": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 76th custom field.",
                      "maxLength": 32000
                    },
                    "custom77": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 77th custom field.",
                      "maxLength": 32000
                    },
                    "custom78": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 78th custom field.",
                      "maxLength": 32000
                    },
                    "custom79": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 79th custom field.",
                      "maxLength": 32000
                    },
                    "custom80": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 80th custom field.",
                      "maxLength": 32000
                    },
                    "custom81": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 81st custom field.",
                      "maxLength": 32000
                    },
                    "custom82": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 82nd custom field.",
                      "maxLength": 32000
                    },
                    "custom83": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 83rd custom field.",
                      "maxLength": 32000
                    },
                    "custom84": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 84th custom field.",
                      "maxLength": 32000
                    },
                    "custom85": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 85th custom field.",
                      "maxLength": 32000
                    },
                    "custom86": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 86th custom field.",
                      "maxLength": 32000
                    },
                    "custom87": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 87th custom field.",
                      "maxLength": 32000
                    },
                    "custom88": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 88th custom field.",
                      "maxLength": 32000
                    },
                    "custom89": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 89th custom field.",
                      "maxLength": 32000
                    },
                    "custom90": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 90th custom field.",
                      "maxLength": 32000
                    },
                    "custom91": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 91st custom field.",
                      "maxLength": 32000
                    },
                    "custom92": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 92nd custom field.",
                      "maxLength": 32000
                    },
                    "custom93": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 93rd custom field.",
                      "maxLength": 32000
                    },
                    "custom94": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 94th custom field.",
                      "maxLength": 32000
                    },
                    "custom95": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 95th custom field.",
                      "maxLength": 32000
                    },
                    "custom96": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 96th custom field.",
                      "maxLength": 32000
                    },
                    "custom97": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 97th custom field.",
                      "maxLength": 32000
                    },
                    "custom98": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 98th custom field.",
                      "maxLength": 32000
                    },
                    "custom99": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account's 99th custom field.",
                      "maxLength": 32000
                    },
                    "custom100": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 100th custom field.",
                      "maxLength": 32000
                    },
                    "custom101": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 101st custom field.",
                      "maxLength": 32000
                    },
                    "custom102": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 102nd custom field.",
                      "maxLength": 32000
                    },
                    "custom103": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 103rd custom field.",
                      "maxLength": 32000
                    },
                    "custom104": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 104th custom field.",
                      "maxLength": 32000
                    },
                    "custom105": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 105th custom field.",
                      "maxLength": 32000
                    },
                    "custom106": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 106th custom field.",
                      "maxLength": 32000
                    },
                    "custom107": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 107th custom field.",
                      "maxLength": 32000
                    },
                    "custom108": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 108th custom field.",
                      "maxLength": 32000
                    },
                    "custom109": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 109th custom field.",
                      "maxLength": 32000
                    },
                    "custom110": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 110th custom field.",
                      "maxLength": 32000
                    },
                    "custom111": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 111th custom field.",
                      "maxLength": 32000
                    },
                    "custom112": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 112th custom field.",
                      "maxLength": 32000
                    },
                    "custom113": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 113th custom field.",
                      "maxLength": 32000
                    },
                    "custom114": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 114th custom field.",
                      "maxLength": 32000
                    },
                    "custom115": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 115th custom field.",
                      "maxLength": 32000
                    },
                    "custom116": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 116th custom field.",
                      "maxLength": 32000
                    },
                    "custom117": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 117th custom field.",
                      "maxLength": 32000
                    },
                    "custom118": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 118th custom field.",
                      "maxLength": 32000
                    },
                    "custom119": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 119th custom field.",
                      "maxLength": 32000
                    },
                    "custom120": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 120th custom field.",
                      "maxLength": 32000
                    },
                    "custom121": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 121st custom field.",
                      "maxLength": 32000
                    },
                    "custom122": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 122nd custom field.",
                      "maxLength": 32000
                    },
                    "custom123": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 123rd custom field.",
                      "maxLength": 32000
                    },
                    "custom124": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 124th custom field.",
                      "maxLength": 32000
                    },
                    "custom125": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 125th custom field.",
                      "maxLength": 32000
                    },
                    "custom126": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 126th custom field.",
                      "maxLength": 32000
                    },
                    "custom127": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 127th custom field.",
                      "maxLength": 32000
                    },
                    "custom128": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 128th custom field.",
                      "maxLength": 32000
                    },
                    "custom129": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 129th custom field.",
                      "maxLength": 32000
                    },
                    "custom130": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 130th custom field.",
                      "maxLength": 32000
                    },
                    "custom131": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 131st custom field.",
                      "maxLength": 32000
                    },
                    "custom132": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 132nd custom field.",
                      "maxLength": 32000
                    },
                    "custom133": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 133rd custom field.",
                      "maxLength": 32000
                    },
                    "custom134": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 134th custom field.",
                      "maxLength": 32000
                    },
                    "custom135": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 135th custom field.",
                      "maxLength": 32000
                    },
                    "custom136": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 136th custom field.",
                      "maxLength": 32000
                    },
                    "custom137": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 137th custom field.",
                      "maxLength": 32000
                    },
                    "custom138": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 138th custom field.",
                      "maxLength": 32000
                    },
                    "custom139": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 139th custom field.",
                      "maxLength": 32000
                    },
                    "custom140": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 140th custom field.",
                      "maxLength": 32000
                    },
                    "custom141": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 141st custom field.",
                      "maxLength": 32000
                    },
                    "custom142": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 142nd custom field.",
                      "maxLength": 32000
                    },
                    "custom143": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 143rd custom field.",
                      "maxLength": 32000
                    },
                    "custom144": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 144th custom field.",
                      "maxLength": 32000
                    },
                    "custom145": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 145th custom field.",
                      "maxLength": 32000
                    },
                    "custom146": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 146th custom field.",
                      "maxLength": 32000
                    },
                    "custom147": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 147th custom field.",
                      "maxLength": 32000
                    },
                    "custom148": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 148th custom field.",
                      "maxLength": 32000
                    },
                    "custom149": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 149th custom field.",
                      "maxLength": 32000
                    },
                    "custom150": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The value of the account’s 150th custom field.",
                      "maxLength": 32000
                    },
                    "customId": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "A custom ID for the account, often referencing an ID in an external system.",
                      "maxLength": 255
                    },
                    "description": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "A custom description of the account.",
                      "maxLength": 65535
                    },
                    "domain": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The company’s website domain (e.g. \"`www.acme.com`\").",
                      "maxLength": 255
                    },
                    "externalSource": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The source of the resource’s creation (e.g. \"outreach-api\").",
                      "maxLength": 255
                    },
                    "followers": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "The number of followers the company has listed on social media."
                    },
                    "foundedAt": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The founding date of the company.",
                      "format": "date-time"
                    },
                    "industry": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "A description of the company’s industry (e.g. \"Manufacturing\").",
                      "maxLength": 255
                    },
                    "linkedInEmployees": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "The number of employees listed on the company’s LinkedIn URL."
                    },
                    "linkedInUrl": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The company’s LinkedIn URL.",
                      "maxLength": 1000
                    },
                    "locality": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The company’s primary geographic region (e.g. \"Eastern USA\").",
                      "maxLength": 255
                    },
                    "naicsCodes": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "Define codes used to classify businesses by industry",
                      "items": {
                        "type": "string"
                      }
                    },
                    "name": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The name of the company (e.g. \"Acme Corporation\").",
                      "maxLength": 255
                    },
                    "named": {
                      "type": [
                        "boolean",
                        "null"
                      ],
                      "description": "A boolean value determining whether this is a \"named\" account or not. Only named accounts will show up on the collection index."
                    },
                    "naturalName": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The natural name of the company (e.g. \"Acme\").",
                      "maxLength": 255
                    },
                    "numberOfEmployees": {
                      "type": [
                        "integer",
                        "null"
                      ],
                      "description": "The number of employees working at the company."
                    },
                    "sharingTeamId": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The ID of the sharing team associated with this object. Access is currently in beta.",
                      "maxLength": 255
                    },
                    "sicCodes": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "Define codes that categorize business activities",
                      "items": {
                        "type": "string"
                      }
                    },
                    "tags": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "description": "A list of tag values associated with the account (e.g. [\"Enterprise\", \"Tier 1\"]).",
                      "items": {
                        "type": "string"
                      }
                    },
                    "tickerSymbol": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Define the ticker symbol",
                      "maxLength": 255
                    },
                    "touchedAt": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The date and time the account was last touched.",
                      "format": "date-time"
                    },
                    "updatedAt": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The date and time the account was last updated.",
                      "format": "date-time"
                    },
                    "websiteUrl": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The company’s website URL (e.g. \"`https://www.acme.com/contact`\").",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "id": {
                  "type": "integer"
                },
                "relationships": {
                  "type": "object",
                  "properties": {
                    "assignedTeams": {
                      "properties": {
                        "data": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "team"
                                ]
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "assignedUsers": {
                      "properties": {
                        "data": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "user"
                                ]
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "batches": {
                      "description": "The batches associated with the account.",
                      "properties": {
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "creator": {
                      "description": "The creator of the account. Relationship creator cannot be used as a filter.",
                      "properties": {
                        "data": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "user"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "defaultPluginMapping": {
                      "description": "The default plugin mapping associated with the account. If no plugin mapping is enabled, it will return the first plugin mapping associated with the account.",
                      "properties": {
                        "data": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "pluginMapping"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "favorites": {
                      "description": "The account favorited by the user.",
                      "properties": {
                        "data": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "favorite"
                                ]
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "owner": {
                      "description": "The owner of the account. You can use only the attribute id to filter accounts by owner (e.g. filter[owner][id]=X).",
                      "properties": {
                        "data": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "user"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "primaryRecordTeam": {
                      "properties": {
                        "data": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "team"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "prospects": {
                      "description": "The account's associated prospects. Relationship prospects cannot be used as a filter.",
                      "properties": {
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "purchases": {
                      "properties": {
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "recordTeamMembers": {
                      "properties": {
                        "data": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "user"
                                ]
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "recordTeams": {
                      "properties": {
                        "data": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "integer"
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "team"
                                ]
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "tasks": {
                      "description": "The associated tasks. Relationship tasks cannot be used as a filter.",
                      "properties": {
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    },
                    "updater": {
                      "description": "The most recent updater of the account. Relationship updater cannot be used as a filter.",
                      "properties": {
                        "data": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "user"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "links": {
                          "type": "object",
                          "properties": {
                            "related": {
                              "type": "string",
                              "format": "uri"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute outreach_list_accounts --payload '{}' --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`.
