Skip to main content
GET
https://sac-waffle-v2.theo-110.workers.dev
/
support
/
relatorios
/
distribuicao
curl -X GET "https://sac-waffle-v2.theo-110.workers.dev/support/relatorios/distribuicao" \
  -H "Authorization: Bearer seu_token_jwt"
{
  "success": true,
  "data": {
    "distribuicao": {
      "porHora": [
        {"hora": 0, "total": 5},
        {"hora": 1, "total": 3},
        {"hora": 2, "total": 2},
        {"hora": 3, "total": 1},
        {"hora": 4, "total": 1},
        {"hora": 5, "total": 2},
        {"hora": 6, "total": 8},
        {"hora": 7, "total": 23},
        {"hora": 8, "total": 45},
        {"hora": 9, "total": 62},
        {"hora": 10, "total": 58},
        {"hora": 11, "total": 52},
        {"hora": 12, "total": 35},
        {"hora": 13, "total": 42},
        {"hora": 14, "total": 48},
        {"hora": 15, "total": 45},
        {"hora": 16, "total": 38},
        {"hora": 17, "total": 32},
        {"hora": 18, "total": 25},
        {"hora": 19, "total": 18},
        {"hora": 20, "total": 15},
        {"hora": 21, "total": 12},
        {"hora": 22, "total": 8},
        {"hora": 23, "total": 6}
      ],
      "porDiaSemana": [
        {"dia": 0, "nome": "Domingo", "total": 23},
        {"dia": 1, "nome": "Segunda", "total": 67},
        {"dia": 2, "nome": "Terca", "total": 72},
        {"dia": 3, "nome": "Quarta", "total": 68},
        {"dia": 4, "nome": "Quinta", "total": 65},
        {"dia": 5, "nome": "Sexta", "total": 35},
        {"dia": 6, "nome": "Sabado", "total": 12}
      ],
      "porNewsletter": [
        {"newsletter": "the news", "total": 145, "percentual": 42.4},
        {"newsletter": "the bizness", "total": 78, "percentual": 22.8},
        {"newsletter": "the champs", "total": 45, "percentual": 13.2},
        {"newsletter": "health times", "total": 38, "percentual": 11.1},
        {"newsletter": "rising", "total": 22, "percentual": 6.4},
        {"newsletter": "goget", "total": 14, "percentual": 4.1}
      ]
    },
    "periodo": {
      "inicio": "2024-01-01",
      "fim": "2024-01-31"
    }
  },
  "cache": {
    "hit": false
  }
}

Descrição

Retorna a distribuição de tickets em três dimensões: por hora do dia (0-23), por dia da semana (Domingo a Sábado) e por newsletter (com percentuais). Útil para identificar padrões de volume de tickets. Este endpoint utiliza cache KV com TTL de 2 horas.

Headers

Authorization
string
required
Bearer token JWT para autenticação

Query Parameters

data_inicio
string
Data de início do período (formato: YYYY-MM-DD). Padrão: 30 dias atrás
data_fim
string
Data de fim do período (formato: YYYY-MM-DD). Padrão: hoje
main
string
Filtrar por categoria principal
newsletter
string
Filtrar por newsletter relacionada

Response

success
boolean
required
Indica se a operação foi bem-sucedida
data
object
cache
object
Informações de cache (hit, age, expiresIn)
curl -X GET "https://sac-waffle-v2.theo-110.workers.dev/support/relatorios/distribuicao" \
  -H "Authorization: Bearer seu_token_jwt"
{
  "success": true,
  "data": {
    "distribuicao": {
      "porHora": [
        {"hora": 0, "total": 5},
        {"hora": 1, "total": 3},
        {"hora": 2, "total": 2},
        {"hora": 3, "total": 1},
        {"hora": 4, "total": 1},
        {"hora": 5, "total": 2},
        {"hora": 6, "total": 8},
        {"hora": 7, "total": 23},
        {"hora": 8, "total": 45},
        {"hora": 9, "total": 62},
        {"hora": 10, "total": 58},
        {"hora": 11, "total": 52},
        {"hora": 12, "total": 35},
        {"hora": 13, "total": 42},
        {"hora": 14, "total": 48},
        {"hora": 15, "total": 45},
        {"hora": 16, "total": 38},
        {"hora": 17, "total": 32},
        {"hora": 18, "total": 25},
        {"hora": 19, "total": 18},
        {"hora": 20, "total": 15},
        {"hora": 21, "total": 12},
        {"hora": 22, "total": 8},
        {"hora": 23, "total": 6}
      ],
      "porDiaSemana": [
        {"dia": 0, "nome": "Domingo", "total": 23},
        {"dia": 1, "nome": "Segunda", "total": 67},
        {"dia": 2, "nome": "Terca", "total": 72},
        {"dia": 3, "nome": "Quarta", "total": 68},
        {"dia": 4, "nome": "Quinta", "total": 65},
        {"dia": 5, "nome": "Sexta", "total": 35},
        {"dia": 6, "nome": "Sabado", "total": 12}
      ],
      "porNewsletter": [
        {"newsletter": "the news", "total": 145, "percentual": 42.4},
        {"newsletter": "the bizness", "total": 78, "percentual": 22.8},
        {"newsletter": "the champs", "total": 45, "percentual": 13.2},
        {"newsletter": "health times", "total": 38, "percentual": 11.1},
        {"newsletter": "rising", "total": 22, "percentual": 6.4},
        {"newsletter": "goget", "total": 14, "percentual": 4.1}
      ]
    },
    "periodo": {
      "inicio": "2024-01-01",
      "fim": "2024-01-31"
    }
  },
  "cache": {
    "hit": false
  }
}