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

# List presets

> Every preset your company has saved, each with where it is attached.

Presets are optional: a company that has saved none gets an empty list, and nothing is filtered until a preset is attached. Takes a platform access token or an API key. See [Set rules on a card](/vault/set-rules-on-a-card).

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.agentcard.sh/api/v2/vault/presets \
    -H "Authorization: Bearer $ORG_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "list",
    "data": [
      {
        "object": "vault_preset",
        "name": "office-supplies",
        "id": "cmtvwbc0g000bjpcc88yiyx8z",
        "version": 1,
        "summary": "Up to $50.00 per day. Merchants: EXAMPLE SHOP, ACME. Currency: USD.",
        "attachments": [
          { "kind": "card", "target_id": "cmtvwbbzj0006jpccycjrkqy4", "last4": "7318" }
        ]
      }
    ]
  }
  ```
</ResponseExample>

<ResponseField name="data" type="object[]">One entry per preset: `name`, the `id` and `version` of the rules in force, `summary` in plain words, and `attachments`, each with `kind` (`card`), `target_id` (the stored card id), and the card's `last4`.</ResponseField>
