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

# Rep

> A rep (sales representative) object.

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

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

<ParamField path="name" type="string" required>
  The name of the rep.
</ParamField>

<ParamField path="ownedById" type="string">
  The UUID of the user who owns this rep.
</ParamField>

<ParamField path="createdAt" type="string" required>
  ISO 8601 timestamp when the object was created.
</ParamField>

<ParamField path="updatedAt" type="string" required>
  ISO 8601 timestamp when the object was last updated.
</ParamField>

## Example

```json theme={null}
{
  "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "objectType": "rep",
  "name": "Jane Smith",
  "ownedById": "c3d4e5f6-a7b8-9012-cdef-123456789012",
  "createdAt": "2024-01-05T09:00:00Z",
  "updatedAt": "2024-02-10T11:30:00Z"
}
```
