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

> Read an Outreach user by ID. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

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

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=outreach_get_user:{"id":"{{id}}"}' --json
```

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

## Input Schema

| Name              | Type      | Required | Default | Description                                                                  |
| ----------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------- |
| `payload.id`      | `integer` | Yes      |         |                                                                              |
| `payload.include` | `string`  | No       |         | Comma-separated related resources to include.                                |
| `payload.fields`  | `object`  | No       |         | Sparse fieldsets keyed by JSON:API resource type, sent as fields\[resource]. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Get a User by ID",
    "properties": {
      "id": {
        "type": "integer"
      },
      "include": {
        "type": "string",
        "description": "Comma-separated related resources to include."
      },
      "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
      }
    },
    "required": [
      "id"
    ],
    "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": "object",
            "properties": {
              "attributes": {
                "type": "object",
                "description": "The individual that uses the application. See https://developers.outreach.io/api/common-patterns/#invite-new-users for more information on inviting new users.",
                "properties": {
                  "accountsViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the account index view."
                  },
                  "activityNotificationsDisabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's activity notifications are disabled."
                  },
                  "bounceWarningEmailEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's bounce warning emails are enabled."
                  },
                  "bridgePhone": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The telephone number of the user's outbound bridge phone.",
                    "maxLength": 255
                  },
                  "bridgePhoneExtension": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The extension number of the user's outbound bridge phone.",
                    "maxLength": 255
                  },
                  "callsViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the calls view."
                  },
                  "controlledTabDefault": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The user's preferred default tab to open when in task flow.",
                    "maxLength": 255
                  },
                  "createdAt": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The date and time the user was created.",
                    "format": "date-time"
                  },
                  "currentSignInAt": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The date and time the user most recently signed in.",
                    "format": "date-time"
                  },
                  "custom1": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The value of the user's first custom field.",
                    "maxLength": 225
                  },
                  "custom2": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The value of the user's second custom field.",
                    "maxLength": 225
                  },
                  "custom3": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The value of the user's third custom field.",
                    "maxLength": 225
                  },
                  "custom4": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The value of the user's fourth custom field.",
                    "maxLength": 225
                  },
                  "custom5": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The value of the user's fifth custom field.",
                    "maxLength": 225
                  },
                  "dailyDigestEmailEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's daily digest emails are enabled."
                  },
                  "defaultRulesetId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The id of the default ruleset assigned to the user."
                  },
                  "duties": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "description": "A collection of the user's work roles."
                  },
                  "email": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The email address of the user. Cannot be updated via the API.",
                    "maxLength": 255,
                    "format": "email"
                  },
                  "enableVoiceRecordings": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user has voice recordings enabled."
                  },
                  "engagementEmailsEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user has engagement emails enabled."
                  },
                  "firstName": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The first name of the user.",
                    "maxLength": 255
                  },
                  "inboundBridgePhone": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The telephone number of the user's inbound bridge phone.",
                    "maxLength": 255
                  },
                  "inboundBridgePhoneExtension": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The extension number of the user's inbound bridge phone.",
                    "maxLength": 255
                  },
                  "inboundCallBehavior": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The behavior of inbound calls. Must be either \"inbound_bridge\" or \"inbound_voicemail\".",
                    "maxLength": 255
                  },
                  "inboundPhoneType": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The user's type of telephone for inbound calls. Must be either \"bridge\", \"voip\" or \"bridge_and_voip\".",
                    "maxLength": 255
                  },
                  "inboundVoicemailCustomMessageText": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The message for inbound voicemails (e.g. \"Please leave a message and I will get back to you as soon I can\").",
                    "maxLength": 1024
                  },
                  "inboundVoicemailMessageTextVoice": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The gender of the voice that reads the voicemail message. Must be either \"man\" or \"woman\".",
                    "maxLength": 255
                  },
                  "inboundVoicemailPromptType": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The type of inbound voicemail to use. Must be either \"automated\", \"recorded\", or \"off\".",
                    "maxLength": 255
                  },
                  "jobRoleByName": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The name of the job role (e.g. \"SDR\").",
                    "maxLength": 255
                  },
                  "kaiaRecordingsViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the kaia recordings view."
                  },
                  "keepBridgePhoneConnected": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "Whether to keep the user's bridge phone connected in-between outbound calls."
                  },
                  "lastName": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The last name of the user.",
                    "maxLength": 255
                  },
                  "lastSignInAt": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The date and time the user previously signed in.",
                    "format": "date-time"
                  },
                  "locked": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user is locked out of the application."
                  },
                  "mailboxErrorEmailEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's mailbox error emails are enabled."
                  },
                  "meetingEngagementNotificationEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's meeting engagement notifications are enabled."
                  },
                  "name": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The full name of the user."
                  },
                  "notificationsEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's notifications are enabled."
                  },
                  "oceClickToDialEverywhere": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value indicating if phone calls will launch a call from Outreach (Salesforce, Github, Gmail, LinkedIn, and Twitter)."
                  },
                  "oceGmailToolbar": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value indicating whether the Outreach Gmail toolbar is enabled."
                  },
                  "oceGmailTrackingState": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The user's current email tracking settings when using Outreach Everywhere with GMail.",
                    "maxLength": 255
                  },
                  "oceSalesforceEmailDecorating": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value indicating if emails are enabled in Outreach Everywhere with Salesforce."
                  },
                  "oceSalesforcePhoneDecorating": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value indicating if phone calls are enabled in Outreach Everywhere with Salesforce."
                  },
                  "oceUniversalTaskFlow": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value indicating whether Outreach Everywhere universal task flow is enabled."
                  },
                  "oceWindowMode": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value indicating whether Outreach Everywhere window mode is enabled."
                  },
                  "opportunitiesViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the opportunity index view."
                  },
                  "passwordExpiresAt": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The date and time the current password expires.",
                    "format": "date-time"
                  },
                  "phoneCountryCode": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The country code of the user's phone.",
                    "maxLength": 2
                  },
                  "phoneNumber": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The telephone number of the user's phone."
                  },
                  "phoneType": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The user's type of telephone for outbound calls. Must be either \"bridge\" or \"voip\".",
                    "maxLength": 255
                  },
                  "pluginAlertNotificationEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's plugin related error notifications are enabled."
                  },
                  "preferredVoiceRegion": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "A string that represents Twilio data center used to connect to Twilio.",
                    "maxLength": 255
                  },
                  "prefersLocalPresence": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user prefers that a voice call comes from a local phone number."
                  },
                  "prospectsViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the prospect index view."
                  },
                  "reportsTeamPerfViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the team performance reports view."
                  },
                  "reportsViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the reports view."
                  },
                  "scimExternalId": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The ID from the SCIM provisioning service used to create the user.",
                    "maxLength": 255
                  },
                  "scimSource": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The name of the SCIM provisioning source used to create the user.",
                    "maxLength": 255
                  },
                  "senderNotificationsExcluded": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's sender notifications are excluded."
                  },
                  "tasksViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the tasks index view."
                  },
                  "teamsViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the teams index view."
                  },
                  "textingEmailNotifications": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether to send the user email notifications when a text message is missed."
                  },
                  "title": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The user's job title (e.g. \"Staff Accountant\").",
                    "maxLength": 255
                  },
                  "unknownReplyEmailEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's unknown reply emails are enabled."
                  },
                  "updatedAt": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The date and time the user was last updated.",
                    "format": "date-time"
                  },
                  "userGuid": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The globally unique ID (GUID) assigned to the user."
                  },
                  "username": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "A reader friendly unique identifier of the user.",
                    "maxLength": 255
                  },
                  "usersViewId": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "description": "The default smart view to load on the users index view."
                  },
                  "voicemailNotificationEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's voicemail notifications are enabled."
                  },
                  "weeklyDigestEmailEnabled": {
                    "type": [
                      "boolean",
                      "null"
                    ],
                    "description": "A boolean value whether the user's weekly digest email are enabled."
                  }
                },
                "additionalProperties": false
              },
              "id": {
                "type": "integer"
              },
              "relationships": {
                "type": "object",
                "properties": {
                  "batches": {
                    "properties": {
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "calendar": {
                    "description": "The calendar associated with the user.",
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "calendar"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "contentCategories": {
                    "description": "The groupings of sequences, snippets and templates that this user has access to. Relationship contentCategories cannot be used as a filter.",
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "contentCategory"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "contentCategoryOwnerships": {
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "contentCategoryOwnership"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "creator": {
                    "description": "The creator of the user. 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
                  },
                  "directAssignedTeams": {
                    "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
                  },
                  "favorites": {
                    "description": "The user 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
                  },
                  "jobRole": {
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "jobRole"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "mailbox": {
                    "description": "The default mailbox associated with the user. Relationship mailbox cannot be used as a filter.",
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "mailbox"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "mailboxes": {
                    "description": "All mailboxes associated with the user. Relationship mailboxes cannot be used as a filter.",
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "mailbox"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "outboundVoicemails": {
                    "description": "The list of outbound voicemails associated with the user.",
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "outboundVoicemail"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "phone": {
                    "description": "The default phone to use outbound or inbound voice calls.",
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "phone"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "phones": {
                    "description": "The list of phones associated with the user.",
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "phone"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "profile": {
                    "description": "The user's profile in Outreach. You can use only the attribute id to filter users by profile (e.g. filter[profile][id]=X).",
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "profile"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "recipients": {
                    "description": "Recipients that will be included by default in all emails composed by user. Relationship recipients cannot be used as a filter.",
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "recipient"
                              ]
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "role": {
                    "description": "The role associated with the user. You can use only the attribute id to filter users by role (e.g. filter[role][id]=X).",
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "role"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "roleAssignedTeams": {
                    "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
                  },
                  "smsPhone": {
                    "description": "The default phone to use for SMS messaging.",
                    "properties": {
                      "data": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "properties": {
                          "id": {
                            "type": "integer"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "phone"
                            ]
                          }
                        },
                        "additionalProperties": false
                      },
                      "links": {
                        "type": "object",
                        "properties": {
                          "related": {
                            "type": "string",
                            "format": "uri"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "additionalProperties": false
                  },
                  "teams": {
                    "description": "The teams the user belongs to. You can use only the attribute id to filter users by teams (e.g. filter[teams][id]=X).",
                    "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
                  },
                  "updater": {
                    "description": "The most recent updater of the user. 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
                  },
                  "voicemailPrompts": {
                    "description": "The list of voicemail prompts associated with the user.",
                    "properties": {
                      "data": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "integer"
                            },
                            "type": {
                              "type": "string",
                              "enum": [
                                "voicemailPrompt"
                              ]
                            }
                          },
                          "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_get_user --payload '{
  "id": "integer"
}' --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`.
