2020年5月
Google Tag Manager
Google Tag Managerを使用したBrazeのAndroid SDKのデプロイと管理方法に関するドキュメントと例を追加。
新しいブラックリスト電子メールAPIエンドポイント
Braze API経由でメールアドレスをブラックリスト化できるようになった。メールアドレスをブラックリストに登録すると、そのユーザーはメールの配信を停止され、ハードバウンスされたことになる。
Braze APIエンドポイントのAPIキー変更
2020年5月より、BrazeはAPIキーの読み取り方法をより安全なものに変更した。これで API キーがリクエストヘッダーとして渡されるはずです。[リクエスト例] の下の個々のエンドポイントページや、[API キーの説明] で例を確認できます。
Braze は、リクエストボディとURL パラメータに渡されるapi_key
を引き続きサポートしますが、最終的にはサンセット(TBD) になります。API コールを適宜更新します。これらの変更はPostman内で更新された。
API キーの説明
この例では、/email/hard_bounces
エンドポイントを使用している。
前:リクエスト本文のAPI キー
1
curl --location --request GET 'https://rest.iad-01.braze.com/email/hard_bounces?api_key={YOUR_REST_API_KEY}&start_date=2019-01-01&end_date=2019-02-01&limit=100&offset=1&[email protected]' \
現在: ヘッダーのAPIキー
1
2
curl --location --request GET 'https://rest.iad-01.braze.com/email/hard_bounces?start_date=2019-01-01&end_date=2019-02-01&limit=100&offset=1&[email protected]' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
この例では、/user/track
エンドポイントを使用している。
前:リクエスト本文のAPI キー
1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --location --request POST 'https://rest.iad-01.braze.com/users/track' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key": YOUR-API-KEY-HERE ,
"attributes": [
{
"external_id":"user_id",
"string_attribute": "sherman",
"boolean_attribute_1": true,
"integer_attribute": 25,
"array_attribute": ["banana", "apple"]
}
]
}'
現在: ヘッダーのAPIキー
1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --location --request POST 'https://rest.iad-01.braze.com/users/track' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY' \
--data-raw '{
"attributes": [
{
"external_id":"user_id",
"string_attribute": "sherman",
"boolean_attribute_1": true,
"integer_attribute": 25,
"array_attribute": ["banana", "apple"]
}
]
}'
New Stuff!