Skip to content

Exportar lista de segmentos

get

/segments/list

Use esse endpoint para exportar uma lista de segmentos, cada um dos quais incluirá seu nome, o identificador da API de segmentos e se tem a análise de dados ativada.

Os segmentos são retornados em grupos de 100 classificados por hora de criação (do mais antigo ao mais recente, por padrão). Os segmentos arquivados não estão incluídos.

Pré-requisitos

Para usar esse endpoint, você precisará de uma chave de API com a permissão segments.list.

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 --request GET 'https://rest.iad-01.braze.com/segments/list?page=1&sort_direction=desc' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

Resposta

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
    "message": (required, string) the status of the export, returns 'success' when completed without errors,
    "segments" : [
        {
            "id" : (string) the Segment API identifier,
            "name" : (string) segment name,
            "analytics_tracking_enabled" : (boolean) whether the segment has analytics tracking enabled,
            "tags" : (array) the tag names associated with the segment formatted as strings
        },
        ...
    ]
}
QUÃO ÚTIL FOI ESTA PÁGINA?
New Stuff!