Skip to content

Exporte KPIs para desinstalações diárias de apps por data

get

/kpi/uninstalls/data_series

Use esse ponto de extremidade para recuperar uma série diária do número total de desinstalações em cada data.

Pré-requisitos

Para usar esse endpoint, você precisará de uma chave de API com a permissão kpi.uninstalls.data_series.

Limite de taxa

We apply the default Braze rate limit of 250,000 requests per hour to this endpoint, as documented in API rate limits.

Parâmetros de solicitação

Exemplo de solicitação

1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/kpi/uninstalls/data_series?length=14&ending_at=2018-06-28T23:59:59-5:00&app_id={{app_identifier}}' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

Resposta

1
2
3
4
5
6
7
8
9
10
11
12
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
    "message": (required, string) the status of the export, returns 'success' when completed without errors,
    "data" : [
        {
            "time" : (string) the date as ISO 8601 date,
            "uninstalls" : (int) the number of uninstalls
        },
        ...
    ]
}
QUÃO ÚTIL FOI ESTA PÁGINA?
New Stuff!