Exportar atributos personalizados
/custom_attributes
Use esse endpoint para exportar uma lista de atributos personalizados registrados para o seu app. As atribuições são retornadas em grupos de 50, classificadas em ordem alfabética.
Pré-requisitos
Para usar esse endpoint, você precisará de uma chave de API com a permissão custom_attributes.get
.
Limite de taxa
For customers who onboarded with Braze on or after September 16, 2021, we apply a shared rate limit of 1,000 requests per hour to this endpoint. This rate limit is shared with the /events
, /events/list
, and /purchases/product_list
endpoints, as documented in API rate limits.
Parâmetros de consulta
Note que cada chamada a esse endpoint retornará 50 atribuições. Para mais de 50 atribuições, use o cabeçalho Link
para recuperar os dados na próxima página, conforme mostrado no exemplo de resposta a seguir.
Parâmetro | Obrigatória | Tipo de dados | Descrição |
---|---|---|---|
cursor |
Opcional | String | Determina a paginação dos atributos personalizados. |
Exemplos de solicitações
Sem cursor
1
2
3
curl --location --request GET 'https://rest.iad-01.braze.com/custom_attributes' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
Com cursor
1
2
3
curl --location --request GET 'https://rest.iad-03.braze.com/custom_attributes?cursor=c2tpcDow' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
Resposta
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
"message": (required, string) the status of the export, returns 'success' when completed without errors,
"attributes" : [
{
"array_length": 100, (number) the maximum array length, or null if not applicable,
"data_type": "Number", (string) the data type,
"description": "The attribute description", (string) the attribute description,
"name": "The attribute name", (string) the attribute name,
"status": "Active", (string) the attribute status,
"tag_names": ["Tag One", "Tag Two"] (array) the tag names associated with the attribute formatted as strings,
},
...
]
}
Códigos de resposta a erros fatais
Para obter os códigos de status e as mensagens de erro associadas que serão retornadas se sua solicitação encontrar um erro fatal, consulte Erros fatais.
Para obter ajuda com exportações de CSV e API, acesse Resolução de problemas de exportação.