> ## Documentation Index
> Fetch the complete documentation index at: https://docs.altahq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# LinkedIn message

> Represents a LinkedIn message sent or received through Alta.

## Fields

<ParamField path="id" type="string" required>
  Unique identifier for the message (UUID).
</ParamField>

<ParamField path="objectType" type="string" required>
  Always `linkedin_message`.
</ParamField>

<ParamField path="conversationId" type="string">
  The LinkedIn conversation ID this message belongs to.
</ParamField>

<ParamField path="text" type="string" required>
  The message text content.
</ParamField>

<ParamField path="type" type="string" required>
  The type of the message. One of `manual`, `campaign`, `reply_agent`, or `received`.
</ParamField>

<ParamField path="status" type="string" required>
  The status of the message. One of `sent` or `draft`.
</ParamField>

<ParamField path="prospectId" type="string">
  The UUID of the prospect associated with this message.
</ParamField>

<ParamField path="repId" type="string">
  The UUID of the rep associated with this message.
</ParamField>

<ParamField path="happenedAt" type="string">
  Timestamp when the message was sent or received (ISO 8601).
</ParamField>

<ParamField path="createdAt" type="string" required>
  Timestamp when the record was created (ISO 8601).
</ParamField>

<ParamField path="updatedAt" type="string" required>
  Timestamp when the record was last updated (ISO 8601).
</ParamField>

## Example

```json theme={null}
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "objectType": "linkedin_message",
  "conversationId": "conv_abc123",
  "text": "Hi John, I wanted to follow up on our conversation...",
  "type": "manual",
  "status": "sent",
  "prospectId": "d290f1ee-6c54-4b01-90e6-d701748f0851",
  "repId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "happenedAt": "2024-03-15T14:30:00Z",
  "createdAt": "2024-03-15T14:30:00Z",
  "updatedAt": "2024-03-15T14:30:00Z"
}
```
