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

# The Channel object

<Note>
  We'll be expanding the object incrementally and with backward compatibility.
</Note>

#### Attributes

<ResponseField name="id" type="string">
  Unique identifier for the object.
</ResponseField>

<ResponseField name="type" type="enum">
  The type of the channel. One of `sales` or `advertising`.
</ResponseField>

<ResponseField name="platform" type="enum">
  One of `amazon` or `walmart`.
</ResponseField>

#### More attributes

<Expandable title="attributes">
  <ResponseField name="object" type="string">
    String representing the object's type. Objects of the same type share the
    same value.
  </ResponseField>

  <ResponseField name="created" type="timestamp">
    Time at which the object was created. Measured in seconds since the Unix
    epoch.
  </ResponseField>
</Expandable>

<ResponseExample>
  ```json THE CHANNEL OBJECT theme={null}
  {
    "id": "f70a0f0d-48e1-4466-8f4c-32747b395de9",
    "object": "channel",
    "type": "sales",
    "platform": "walmart",
    "created_at": 1662738023
  }
  ```
</ResponseExample>
