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

# Listar Cupons

Retorna os cupons de desconto cadastrados na loja.

## Parâmetros da Requisição

<ParamField header="Authorization" type="string" required>
  Token de acesso no formato `Bearer <seu_token>`.
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "id": "uuid-do-cupom",
      "store_id": "uuid-da-loja",
      "code": "PROMO10",
      "discount_type": "PERCENTAGE",
      "discount_value": 10,
      "min_order_value": null,
      "max_uses": null,
      "used_count": 0,
      "expires_at": null,
      "active": true,
      "product_ids": [],
      "created_at": "2024-01-01T00:00:00.000Z",
      "updated_at": "2024-01-01T00:00:00.000Z"
    }
  ]
  ```
</ResponseExample>
