Skip to content

Exportar análise de dados resumidos do Canvas

get

/canvas/data_summary

Use este endpoint para exportar consolidações de dados de séries temporais de um Canvas, fornecendo um resumo conciso dos resultados do Canvas.

Pré-requisitos

Para usar este endpoint, você precisará de uma chave de API com a permissão canvas.data_summary.

Limite de frequência

Aplicamos o limite de taxa padrão da Braze de 250.000 solicitações por hora a esse endpoint, conforme documentado em Limites de taxa da API.

Parâmetros de solicitação

Parâmetro Obrigatório Tipo de dados Descrição
canvas_id Obrigatório String Consulte Identificador de API do Canvas.
ending_at Obrigatório Datetime
(ISO-8601 string)
Data final para a exportação de dados. O padrão é o momento da solicitação.
starting_at Opcional* Datetime
(ISO-8601 string)
Data de início para a exportação de dados.

* É necessário informar length ou starting_at.
length Opcional* String Número máximo de dias antes de ending_at incluídos na série retornada. Deve estar entre 1 e 14 (inclusive).

* É necessário informar length ou starting_at.
include_variant_breakdown Opcional Booleano Se deve incluir estatísticas de variantes (o padrão é false).
include_step_breakdown Opcional Booleano Se deve incluir estatísticas de etapas (o padrão é false).
include_deleted_step_data Opcional Booleano Se deve incluir estatísticas de etapas excluídas (o padrão é false).

Exemplo de solicitação

1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/canvas/data_summary?canvas_id={{canvas_id}}&ending_at=2018-05-30T23:59:59-05:00&starting_at=2018-05-28T23:59:59-05:00&length=5&include_variant_breakdown=true&include_step_breakdown=true&include_deleted_step_data=true' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

Resposta

Campos de evento de conversão

A resposta inclui um par de campos de conversão para cada evento de conversão configurado no Canvas. O evento de conversão primária usa conversions e conversions_by_entry_time. Cada evento adicional usa o mesmo nome base com um sufixo numérico que começa em 1 para o segundo evento e aumenta em um para cada evento adicional.

Ordem do evento de conversão no Canvas Campo de conversões Campo por horário de entrada
Primário conversions conversions_by_entry_time
Segundo conversions1 conversions1_by_entry_time
Terceiro conversions2 conversions2_by_entry_time
Quarto conversions3 conversions3_by_entry_time

O quinto evento e os seguintes seguem o mesmo padrão (por exemplo, conversions4 e conversions4_by_entry_time). Esses campos aparecem em total_stats e, quando você solicita detalhamentos, em variant_stats e step_stats usando os mesmos nomes.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
  "data": {
    "name": (string) the Canvas name,
    "total_stats": {
      "revenue": (float) the number of dollars of revenue (USD),
      "entries": (int) the number of entries,
      "conversions": (int) the number of conversions for the primary conversion event,
      "conversions_by_entry_time": (int) the number of conversions for the primary conversion event by entry time,
      "conversions1": (optional, int) the number of conversions for the second conversion event,
      "conversions1_by_entry_time": (optional, int) the number of conversions for the second conversion event by entry time,
      "conversions2": (optional, int) the number of conversions for the third conversion event,
      "conversions2_by_entry_time": (optional, int) the number of conversions for the third conversion event by entry time,
      "conversions3": (optional, int) the number of conversions for the fourth conversion event,
      "conversions3_by_entry_time": (optional, int) the number of conversions for the fourth conversion event by entry time
    },
    "variant_stats": (optional) {
      "00000000-0000-0000-0000-0000000000000": (string) the API identifier for the variant {
        "name": (string) the name of the variant,
        "revenue": (float) the number of dollars of revenue (USD),
        "conversions": (int) the number of conversions for the primary conversion event,
        "conversions_by_entry_time": (optional, int) the number of conversions for the primary conversion event by entry time,
        "conversions1": (optional, int) the number of conversions for the second conversion event,
        "conversions1_by_entry_time": (optional, int) the number of conversions for the second conversion event by entry time,
        "conversions2": (optional, int) the number of conversions for the third conversion event,
        "conversions2_by_entry_time": (optional, int) the number of conversions for the third conversion event by entry time,
        "conversions3": (optional, int) the number of conversions for the fourth conversion event,
        "conversions3_by_entry_time": (optional, int) the number of conversions for the fourth conversion event by entry time,
        "entries": (int) the number of entries
      },
      ... (more variants)
    },
    "step_stats": (optional) {
      "00000000-0000-0000-0000-0000000000000": (string) the API identifier for the step {
        "name": (string) the name of the step,
        "revenue": (float) the number of dollars of revenue (USD),
        "conversions": (int) the number of conversions for the primary conversion event,
        "conversions_by_entry_time": (int) the number of conversions for the primary conversion event by entry time,
        "conversions1": (optional, int) the number of conversions for the second conversion event,
        "conversions1_by_entry_time": (optional, int) the number of conversions for the second conversion event by entry time,
        "conversions2": (optional, int) the number of conversions for the third conversion event,
        "conversions2_by_entry_time": (optional, int) the number of conversions for the third conversion event by entry time,
        "conversions3": (optional, int) the number of conversions for the fourth conversion event,
        "conversions3_by_entry_time": (optional, int) the number of conversions for the fourth conversion event by entry time,
        "messages": {
          "android_push": (name of channel) [
            {
              "sent": (int) the number of sends,
              "opens": (int) the number of opens,
              "influenced_opens": (int) the total number of opens (includes both direct opens and influenced opens),
              "bounces": (int) the number of bounces
              ... (more stats for channel)
            }
          ],
          ... (more channels)
        }
      },
      ... (more steps)
    }
  },
  "message": (required, string) the status of the export, returns 'success' on successful completion
}
New Stuff!