> ## 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 Strategy 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="name" type="string">
  The name of the strategy.
</ResponseField>

<ResponseField name="type" type="enum">
  The type of the strategy. One of `rule` or `ai`.
</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 STRATEGY OBJECT theme={null}
  {
    "id": "c38970b9-bbf4-4288-a18b-b8bd1de4fbb7",
    "object": "strategy",
    "name": "Buy Box Dominator 9001",
    "type": "ai",
    "platform": "amazon",
    "created_at": 1662732623
  }
  ```
</ResponseExample>
